jdpace / weatherman

Ruby gem for accessing the Weather Channel XML API

This URL has Read+Write access

weatherman / weatherman.gemspec
5fccd814 » jdpace 2008-09-29 Added gemspec to make a gem... 1 Gem::Specification.new do |s|
2 s.name = "weatherman"
7541bc64 » jdpace 2008-10-03 Capture the weather locatio... 3 s.version = "0.1.2"
4 s.date = "2008-10-03"
5fccd814 » jdpace 2008-09-29 Added gemspec to make a gem... 5
6 s.homepage = "http://github.com/jdpace/weatherman"
9282bb95 » jdpace 2008-09-29 Modified gemspec to force r... 7 s.summary = "Ruby gem for accessing the Weather Channel XML API based on rweather."
5fccd814 » jdpace 2008-09-29 Added gemspec to make a gem... 8 s.description = "A wrapper for the Weather Channel, inc (weather.com) XML api covers most features of the api. Current Conditions, Forecasting, and access to the promotional links that you are required to display as part of the API TOS."
9
10 s.authors = ["Jared Pace"]
11 s.email = "jared@codewordstudios.com"
12
13 s.files = ["lib/weather_man.rb", "lib/weather_man_response.rb", "spec/cc_only_response.xml", "spec/default_response.xml", "spec/forecast_only_response.xml", "spec/weather_man_response_spec.rb", "spec/weather_man_spec.rb"]
14
15 s.has_rdoc = true
16 s.rdoc_options = ["--main", "README.rdoc"]
17 s.extra_rdoc_files = ["README.rdoc"]
18
19 s.add_dependency("xml-simple", [">= 1.0.11"])
20 end