Sha256: 189e58655798ac4a890a8628bb256e7a60740fb4e437ca83619cf9f3022ece2d

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'taxamatch_rb/version'

Gem::Specification.new do |gem|
  gem.name          = "taxamatch_rb"
  gem.version       = Taxamatch::VERSION
  gem.authors       = ["Dmitry Mozzherin"]
  gem.email         = ["dmozzherin@gmail.com"]

  gem.summary       = %q{Fuzzy matching of scientific names}
  gem.description   = "The purpose of Taxamatch gem is to facilitate fuzzy" \
                      "comparison of two scientific name renderings to find" \
                      "out if they actually point to the same scientific name."
  gem.homepage      = "https://github.com/GlobalNamesArchitecture/taxamatch_rb"
  gem.license       = "MIT"

  gem.files         = `git ls-files -z`.split("\x0").
                      reject { |f| f.match(%r{^(test|spec|features)/}) }
  gem.bindir        = "exe"
  gem.executables   = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
  gem.require_paths = ["lib"]

  gem.add_runtime_dependency "biodiversity", "~> 3.1"
  gem.add_runtime_dependency "damerau-levenshtein", "~> 1.0"
  gem.add_runtime_dependency "json", "~> 1.8"

  gem.add_development_dependency "bundler", "~> 1.6"
  gem.add_development_dependency "rake", "~> 10.4"
  gem.add_development_dependency "rspec", "~> 3.2"
  gem.add_development_dependency "cucumber", "~> 2.0"
  gem.add_development_dependency "coveralls", "~> 0.8"
  gem.add_development_dependency "rubocop", "~> 0.30"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
taxamatch_rb-1.1.2 taxamatch_rb.gemspec
taxamatch_rb-1.1.1 taxamatch_rb.gemspec
taxamatch_rb-1.1.0 taxamatch_rb.gemspec