forked from alakra/ndfd-weather-forecast-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathndfd-client.gemspec
24 lines (20 loc) · 942 Bytes
/
ndfd-client.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'ndfd/client/version'
Gem::Specification.new do |s|
s.name = "ndfd-weather-forecast-client"
s.version = NDFD::Client::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Angelo Lakra"]
s.email = ["[email protected]"]
s.summary = "Client library for retrieving data from NOAA's weather forecast API"
s.description = "Client library for retrieving data from NOAA's weather forecast API}"
s.add_runtime_dependency 'savon', '~> 2.3.3', '>= 2.3.3'
s.add_runtime_dependency 'nokogiri', '~> 1.6.1', '>= 1.6.1'
s.add_runtime_dependency 'multi_json', '~> 1.9.0', '>= 1.9.0'
s.add_runtime_dependency 'activesupport', '~> 4.0.3', '>= 4.0.3'
s.add_runtime_dependency 'http_logger', '~> 0.4.2', '>= 0.4.2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
end