Sha256: 921fb7b9f54eb52371aa71fbd523f66e210eb7fd5cf8210c8c2503ff30afe4bf
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'currency_converter/version' Gem::Specification.new do |spec| spec.name = "currency_converter" spec.version = CurrencyConverter::VERSION.dup spec.platform = Gem::Platform::RUBY spec.license = "MIT" spec.authors = ["Diganta Mandal"] spec.email = ["diganta@circarconsulting.com"] spec.description = %q{Google provides a web site to converts currencies using exchange rates but they have not provided any API for ruby. This is a small library that converts currencies exchange rate. You can convert currencies directly through this library.} spec.summary = %q{Google provides a web site to converts currencies using exchange rates but they have not provided any API for ruby. This is a small library that converts currencies exchange rate. You can convert currencies directly through this library.} spec.homepage = "https://github.com/diganta/currency" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = ">= 1.8.7" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 2.14" spec.add_development_dependency "yard", "~> 0.8" spec.add_development_dependency "kramdown", "~> 1.1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
currency_converter-0.0.1 | currency_converter.gemspec |