Sha256: 084ce37c4876acfed21e1456cbea1307f9be27e2621d67e3d9130197a2ef35e6
Contents?: true
Size: 939 Bytes
Versions: 1
Compression:
Stored size: 939 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 of the European Central Bank." s.rubyforge_project = "fixer" s.add_dependency("nokogiri", ["~> 1.4.0"]) s.add_development_dependency("rspec", ["~> 2.1.0"]) 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fixer-0.3.0 | fixer.gemspec |