forked from codeforamerica/world_bank_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
world_bank.gemspec
31 lines (27 loc) · 1.44 KB
/
world_bank.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/world_bank/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'world_bank'
gem.version = WorldBank::VERSION
gem.authors = ['Code for America - DevTools', 'Justin Stoller']
gem.email = ['[email protected]', '[email protected]']
gem.homepage = 'https://github.com/codeforamerica/world_bank_ruby'
gem.summary = %q{A Ruby wrapper around the World Bank's Development Indicators API}
gem.description = %q{A Ruby wrapper around the World Bank's Development Indicators API}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.require_paths = ['lib']
gem.add_development_dependency 'ZenTest', '~> 4.5'
gem.add_development_dependency 'maruku', '~> 0.6'
gem.add_development_dependency 'rake', '~> 0.9'
gem.add_development_dependency 'rspec', '~> 2.6'
gem.add_development_dependency 'simplecov', '~> 0.4'
gem.add_development_dependency 'yard', '~> 0.7'
gem.add_development_dependency 'webmock', '~> 1.6'
gem.add_runtime_dependency 'faraday', '~> 0.6.1'
gem.add_runtime_dependency 'faraday_middleware', '~> 0.6.3'
gem.add_runtime_dependency 'hashie', '~> 1.0.0'
gem.add_runtime_dependency 'multi_json', '~> 1.3.6'
gem.add_runtime_dependency 'rash', '~> 0.3.0'
end