forked from RubyMoney/google_currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_currency.gemspec
26 lines (21 loc) · 959 Bytes
/
google_currency.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
Gem::Specification.new do |s|
s.name = "google_currency"
s.version = "2.3.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Shane Emmons"]
s.email = ["[email protected]"]
s.homepage = "http://rubymoney.github.com/google_currency"
s.summary = "Access the Google Currency exchange rate data."
s.description = "GoogleCurrency extends Money::Bank::Base and gives you access to the current Google Currency exchange rates."
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "rspec", ">= 2.0.0"
s.add_development_dependency "yard", ">= 0.5.8"
s.add_development_dependency "json", ">= 1.4.0"
s.add_development_dependency "ffi"
s.add_dependency "money", "~> 5.1.1"
s.add_dependency "multi_json"
s.files = Dir.glob("{lib,spec}/**/*")
s.files += %w(LICENSE README.md CHANGELOG.md AUTHORS)
s.files += %w(Rakefile .gemtest google_currency.gemspec)
s.require_path = "lib"
end