forked from shaper/yahoo-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
24 lines (22 loc) · 850 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rubygems'
require 'hoe'
$:.unshift(File.dirname(__FILE__) + "/lib")
require 'yahoo-weather'
Hoe.spec('yahoo-weather') do |p|
self.version = YahooWeather::VERSION
self.rubyforge_name = 'yahoo-weather'
self.author = 'Walter Korman'
self.email = '[email protected]'
self.extra_deps << [ 'nokogiri', '>= 1.4.1' ]
self.summary = 'A Ruby object-oriented interface to the Yahoo! Weather service.'
self.description = <<EDOC
The yahoo-weather rubygem provides a Ruby object-oriented interface to the
Yahoo! Weather service described in detail at:
http://developer.yahoo.com/weather
EDOC
self.url = 'http://rubyforge.org/projects/yahoo-weather'
self.remote_rdoc_dir = '' # Release to root
self.readme_file = 'README.rdoc'
self.history_file = 'CHANGELOG.rdoc'
self.extra_rdoc_files = [ 'CHANGELOG.rdoc', 'README.rdoc' ]
end