Sha256: 9f6e7512609c360c2e769613a397029986b81ac6f0ff10993356da6418bfc260
Contents?: true
Size: 1.37 KB
Versions: 4
Compression:
Stored size: 1.37 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fuzzy_match/version" Gem::Specification.new do |s| s.name = "fuzzy_match" s.version = FuzzyMatch::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Seamus Abshere"] s.email = ["seamus@abshere.net"] s.homepage = "https://github.com/seamusabshere/fuzzy_match" s.summary = %Q{Find a needle in a haystack using string similarity and (optionally) regexp rules. Replaces loose_tight_dictionary.} s.description = %Q{Find a needle in a haystack using string similarity and (optionally) regexp rules. Replaces loose_tight_dictionary.} s.rubyforge_project = "fuzzy_match" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,ffuzzy_matchures}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency "shoulda" s.add_development_dependency "remote_table" s.add_development_dependency 'activerecord', '>=3' s.add_development_dependency 'mysql' s.add_development_dependency 'cohort_scope' s.add_development_dependency 'weighted_average' s.add_development_dependency 'rake' # s.add_development_dependency 'amatch' s.add_runtime_dependency 'activesupport', '>=3' s.add_runtime_dependency 'to_regexp', '>=0.0.3' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fuzzy_match-1.2.1 | fuzzy_match.gemspec |
fuzzy_match-1.1.1 | fuzzy_match.gemspec |
fuzzy_match-1.1.0 | fuzzy_match.gemspec |
fuzzy_match-1.0.5 | fuzzy_match.gemspec |