-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathflightstats.gemspec
More file actions
24 lines (19 loc) · 868 Bytes
/
flightstats.gemspec
File metadata and controls
24 lines (19 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'flightstats/version'
Gem::Specification.new do |s|
s.name = 'flightstats-flex'
s.version = FlightStats::Version.to_s
s.summary = 'FlightStats Flex API Client'
s.description = 'An API client library for FlightStats Flex: http://flightstats.com'
s.files = Dir['lib/**/*']
s.has_rdoc = true
s.extra_rdoc_files = %w(README.md)
s.rdoc_options = %w(--main README.md)
s.author = 'DidItClear'
s.email = 'didyourupgradeclear@gmail.com'
s.homepage = 'https://github.com/diditclear/flightstats-client-ruby'
s.license = 'MIT'
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'rspec', '~> 2.12.0'
s.add_development_dependency 'webmock', '~> 1.7.6'
end