# 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