Sha256: 0e5dddd3e8efa3fb0edfcc11c19f3cdc50b58fe06df1c44a24fd0d204bdc6f55

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/fuzzy_match/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "fuzzy_match"
  s.version     = FuzzyMatch::VERSION
  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/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # needed if you use FuzzyMatch::CachedResult
  s.add_development_dependency 'active_record_inline_schema', '>=0.4.0'

  # development dependencies
  s.add_development_dependency 'pry'
  s.add_development_dependency 'rspec-core'
  s.add_development_dependency 'rspec-expectations'
  s.add_development_dependency 'rspec-mocks'
  s.add_development_dependency 'activerecord', '>=3'
  s.add_development_dependency 'mysql2'
  s.add_development_dependency 'cohort_analysis'
  s.add_development_dependency 'weighted_average'
  s.add_development_dependency 'yard'
  s.add_development_dependency 'amatch'
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/fuzzy_match-2.0.4/fuzzy_match.gemspec
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/fuzzy_match-2.0.4/fuzzy_match.gemspec
fuzzy_match-2.1.0 fuzzy_match.gemspec
fuzzy_match-2.0.4 fuzzy_match.gemspec
fuzzy_match-2.0.3 fuzzy_match.gemspec
fuzzy_match-2.0.2 fuzzy_match.gemspec
fuzzy_match-2.0.1 fuzzy_match.gemspec
fuzzy_match-2.0.0 fuzzy_match.gemspec