fuzzy_match.gemspec in fuzzy_match-1.3.2 vs fuzzy_match.gemspec in fuzzy_match-1.3.3
- old
+ new
@@ -1,13 +1,11 @@
# -*- encoding: utf-8 -*-
-$:.push File.expand_path("../lib", __FILE__)
-require "fuzzy_match/version"
+require File.expand_path("../lib/fuzzy_match/version", __FILE__)
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.}
@@ -19,6 +17,7 @@
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency 'activesupport', '>=3'
s.add_runtime_dependency 'to_regexp', '>=0.0.3'
+ s.add_runtime_dependency 'active_record_inline_schema', '>=0.4.0'
end