Sha256: a66612f902014052d2d4a395f4b96d0b3b32635bc2016b7c4bcabbd036673362
Contents?: true
Size: 990 Bytes
Versions: 2
Compression:
Stored size: 990 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fixer/version" Gem::Specification.new do |s| s.name = "fixer" s.version = Fixer::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Hakan Ensari"] s.email = ["code@papercavalier.com"] s.homepage = "http://fixer.heroku.com" s.summary = "A Ruby wrapper to the European Central Bank exchange rate feeds" s.description = "Fixer is a Ruby wrapper to the current and historical foreign exchange or FX rate feeds provided by the European Central Bank." s.rubyforge_project = "fixer" s.add_dependency("nokogiri", ["~> 1.4.0"]) s.add_development_dependency("rake") s.add_development_dependency("rspec", ["= 2.0.0.rc"]) s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fixer-0.2.1 | fixer.gemspec |
fixer-0.2.0 | fixer.gemspec |