Sha256: fff9b6ad82952850c2bab739b3a9ce8ccaa0b251af979b784c5c3afa39b75fc6
Contents?: true
Size: 964 Bytes
Versions: 2
Compression:
Stored size: 964 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jaro_winkler/version' Gem::Specification.new do |spec| spec.name = "jaro_winkler" spec.version = JaroWinkler::VERSION spec.authors = ["Jian Weihang"] spec.email = ["tonytonyjan@gmail.com"] spec.summary = %q{Pure Ruby implementation of Jaro-Winkler distance algorithm.} spec.description = %q{Pure Ruby implementation of Jaro-Winkler distance algorithm.} spec.homepage = "https://github.com/tonytonyjan/jaro_winkler" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") 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.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jaro_winkler-1.0.1 | jaro_winkler.gemspec |
jaro_winkler-1.0.0 | jaro_winkler.gemspec |