Sha256: e614e059d683c7579cf9e7888d5a17ccd8f941a2aa7c01bf7cffa04320584905
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "paragoz/version" Gem::Specification.new do |spec| spec.name = "paragoz" spec.version = Paragoz::VERSION spec.required_ruby_version = '~> 2.0' spec.authors = ["Gökhan Çağlar"] spec.email = ["caglar.gokhan@gmail.com"] spec.summary = %q{Currency parser} spec.description = %Q{Paragoz parses currency JSON data from fixer.io currency api and you can create a currency object that includes world currencies rate and cost of buying a currency. Also you can compare two currencies as you can print all rates and costs and comparation differences.} spec.homepage = "https://github.com/cptangry/paragoz" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org/" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency 'json', '~> 2.1' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
paragoz-2.2.6 | paragoz.gemspec |
paragoz-2.2.5 | paragoz.gemspec |
paragoz-2.2.4 | paragoz.gemspec |