-
Notifications
You must be signed in to change notification settings - Fork 28
/
yahoo_weatherman.gemspec
31 lines (31 loc) · 1.08 KB
/
yahoo_weatherman.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Gem::Specification.new do |gem|
gem.name = "yahoo_weatherman"
gem.version = "2.0.0"
gem.authors = ["Dalto Curvelano Junior"]
gem.description = "A ruby wrapper to the Yahoo! Weather feed with i18n support."
gem.summary = "A ruby wrapper to the Yahoo! Weather feed with i18n support."
gem.files = [
"yahoo_weatherman.gemspec",
"lib/yahoo_weatherman/image.rb",
"lib/yahoo_weatherman/response.rb",
"lib/yahoo_weatherman/i18n.rb",
"lib/yahoo_weatherman/woeid_lookup.rb",
"lib/yahoo_weatherman.rb",
"i18n/es.yml",
"i18n/gr.yml",
"i18n/pt-br.yml",
"i18n/ru.yml",
"i18n/zh-cn.yml",
"spec/files/belo_horizonte_c.rss",
"spec/files/belo_horizonte_f.rss",
"spec/spec_helper.rb",
"spec/yahoo_weatherman/response_spec.rb",
"spec/yahoo_weatherman/yahoo_weatherman_spec.rb",
"spec/yahoo_weatherman/i18n_spec.rb",
"spec/yahoo_weatherman/woeid_lookup_spec.rb"
]
gem.homepage = "http://github.com/dlt/yahoo_weatherman"
gem.add_dependency "nokogiri"
gem.add_development_dependency "rspec"
gem.add_development_dependency "fakeweb"
end