forked from joeyates/metar-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetar-parser.gemspec
46 lines (36 loc) · 1.47 KB
/
metar-parser.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
36
37
38
39
40
41
42
43
44
45
# -*- encoding: utf-8 -*-
$:.unshift( File.join( File.dirname( __FILE__ ), 'lib' ) )
require 'metar/version'
require 'rake'
Gem::Specification.new do |s|
s.name = 'metar-parser'
s.summary = 'A Ruby gem for worldwide weather reports'
s.description = <<-EOT
metar-parser is a ruby gem that downloads weather reports, parses them and formats reports.
It also provides weather station listings and info (e.g. country, latitude and longitude).
Reports can be fully localized (currently English and Italian are available).
EOT
s.version = Metar::VERSION::STRING
s.homepage = 'http://github.com/joeyates/metar-parser'
s.author = 'Joe Yates'
s.email = '[email protected]'
s.files = ['README.md', 'COPYING', 'Rakefile'] +
FileList['{bin,lib,spec}/**/*.rb'] +
FileList['locales/**/*.{rb,yml}']
s.require_paths = ['lib']
s.test_files = FileList[ 'spec/**/*_spec.rb' ]
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'rdoc'
s.add_runtime_dependency 'i18n', '>= 0.3.5'
s.add_runtime_dependency 'aasm', '>= 2.1.5'
s.add_runtime_dependency 'm9t', '~> 0.3.1'
s.add_development_dependency 'rspec', '>= 2.3.0'
if RUBY_VERSION < '1.9'
s.add_development_dependency 'rcov'
else
s.add_development_dependency 'simplecov'
end
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-doc'
s.rubyforge_project = 'nowarning'
end