-
Notifications
You must be signed in to change notification settings - Fork 37
/
noaa.gemspec
35 lines (30 loc) · 1.6 KB
/
noaa.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
32
33
34
35
# -*- encoding: utf-8 -*-
$: << File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
require 'noaa/version'
Gem::Specification.new do |s|
s.name = %q{noaa}
s.version = NOAA::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Mat Brown"]
s.date = Date.today
s.default_executable = %q{noaa-update-stations}
s.description = %q{Ruby API for National Oceanic and Atmospheric Administration weather data}
s.email = %q{[email protected]}
s.executables = ["noaa-update-stations"]
s.files = Dir.glob('{bin,lib,test,data}/**/*') + %w(CHANGELOG README)
s.has_rdoc = true
s.homepage = %q{http://github.com/outoftime/noaa}
s.post_install_message = %q{Be sure to update the weather station list:
sudo noaa-update-stations
This can be run at any time to update the stations, but you must run it once to initially populate the station list.}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Noaa", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{noaa}
s.rubygems_version = %q{1.3.1}
s.summary = %q{Ruby API for National Oceanic and Atmospheric Administration weather data}
s.test_files = ["test/test_station_writer.rb", "test/test_forecast.rb", "test/test_helper.rb", "test/test_station.rb", "test/test_http_service.rb", "test/test_current_conditions.rb"]
s.add_runtime_dependency('nokogiri', '>= 0.9.7')
s.add_runtime_dependency('geokit', '>= 1.5.0')
s.add_development_dependency('mcmire-context', ">= 0.0.16")
s.add_development_dependency('jnunemaker-matchy', ">= 0.4.0")
end