Sha256: 4ba215029317c542d7c2b3a41d67d75cb3da59126f16999f651c328bc7700f4c

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 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{Simple Ruby API to get exchange rates from currencies using Yahoo finance currency converter and XE currency converter. You can convert currencies directly through this library.}
  spec.summary                = %q{Simple Ruby API to get exchange rates from currencies using Yahoo finance currency converter and XE currency converter. 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

2 entries across 2 versions & 1 rubygems

Version Path
currency_converter-1.1.4 currency_converter.gemspec
currency_converter-1.1.3 currency_converter.gemspec