Gem::Specification.new do |s| s.name = "google_currency_rails_cache" s.version = "1.0.0" s.platform = Gem::Platform::RUBY s.authors = ["Shane Emmons", "Alex Kremer"] s.email = ["semmons99@gmail.com", "alex@flextrip.com"] s.homepage = "http://github.com/flextrip/google_currency_rails_cache" 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. This fork allows caching of exchange rate data in Rails.cache and removes the necessity for the Mutex." 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 "yajl-ruby", ">= 1.0.0" s.add_development_dependency "ffi" s.add_dependency "money", "~> 5.1.0" s.add_dependency "multi_json", ">= 1.0.0" s.add_dependency "rails", "> 3.2" s.files = Dir.glob("{lib,spec}/**/*") s.files += %w(LICENSE README.md CHANGELOG.md AUTHORS) s.files += %w(Rakefile .gemtest google_currency_rails_cache.gemspec) s.require_path = "lib" end