forked from spk/money-open-exchange-rates
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmoney-open-exchange-rates.gemspec
23 lines (23 loc) · 1.03 KB
/
money-open-exchange-rates.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "iplan-money-open-exchange-rates"
s.version = "0.1.8"
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.homepage = "http://github.com/spk/#{s.name}"
s.authors = ["Laurent Arnoud", "Sam Lown"]
s.email = "[email protected]"
s.description = "A gem that calculates the exchange rate using published rates from open-exchange-rates. Compatible with the money gem."
s.summary = "A gem that calculates the exchange rate using published rates from open-exchange-rates."
s.extra_rdoc_files = %w(README.markdown)
s.files = Dir["LICENSE", "README.markdown", "Gemfile", "lib/**/*.rb", 'test/**/*']
s.license = 'MIT'
s.test_files = Dir.glob("test/*_test.rb")
s.require_paths = ["lib"]
s.required_ruby_version = ">= 1.8.7"
s.rubygems_version = %q{1.3.7}
s.add_dependency "money", "=3.7.1"
s.add_development_dependency "minitest", ">=2.0"
s.add_development_dependency 'pry'
s.add_development_dependency "rr", ">=1.0.4"
s.add_development_dependency "rake"
s.add_dependency "json", ">= 1.7"
end