Sha256: 4f0e0e015fb30ccc54eb5ee4668559f3b84f4c0d92a825ddbb2eb42cce877d49
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 = ['urs.diganta@gmail.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/dark-prince/currency_converter' 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 = '>= 2.0.0' spec.add_dependency 'nokogiri' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'yard' spec.add_development_dependency 'kramdown' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
currency_converter-1.1.2 | currency_converter.gemspec |