forked from spk/money-open-exchange-rates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
money-open-exchange-rates.gemspec
25 lines (25 loc) · 1.09 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
24
25
Gem::Specification.new do |s|
s.name = "money-open-exchange-rates"
s.version = "0.2.0"
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.homepage = "http://github.com/spk/#{s.name}"
s.authors = ["Laurent Arnoud"]
s.email = "laurent@spkdev.net"
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.9.2"
s.rubygems_version = %q{1.3.7}
s.add_dependency "money", "~> 6.5.0"
s.add_dependency "monetize", "~> 1.1.0"
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_development_dependency "timecop"
s.add_dependency "json", ">= 1.7"
end