forked from coderhs/ruby_open_weather_map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
open_weather.gemspec
21 lines (20 loc) · 1.06 KB
/
open_weather.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path('../lib', __FILE__)
require 'open_weather/version'
Gem::Specification.new do |gem|
gem.name = 'open-weather'
gem.version = OpenWeather::VERSION
gem.authors = ["HsPS [email protected]", "Deepak [email protected]"]
gem.licenses = ['MIT']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/coderhs/ruby_open_weather_map'
gem.summary = %q{ A ruby wrapper for Open Weather Map API. }
gem.description = %q{ A ruby wrapper for Open Weather Map API. }
gem.files = `git ls-files`.split("\n")
gem.test_files = gem.files.grep(/^(spec|test|features)/)
gem.executables = gem.files.grep(/^bin/).map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_development_dependency 'rspec', '~> 2.13', '>= 2.13.0'
gem.add_development_dependency 'vcr', '~> 2.9', '>= 2.9.2'
gem.add_development_dependency 'webmock', '~> 1.18', '>= 1.18.0'
gem.add_runtime_dependency 'json', '~> 1'
end