soulmate_rails.gemspec in soulmate_rails-0.3.0 vs soulmate_rails.gemspec in soulmate_rails-0.3.1
- old
+ new
@@ -11,19 +11,20 @@
s.email = ["dhruva.sagar@gmail.com"]
s.version = SoulmateRails::VERSION
s.authors = ["Dhruva Sagar"]
s.homepage = "http://github.com/dhruvasagar/soulmate_rails"
s.summary = "Redis-backed autocompletion engine for Rails"
- s.description = "Soulmate Rails is a tool to help solve the common problem of developing a fast autocomplete feature for Rails. It uses Redis's sorted sets to build an index of partial words and corresponding top matches."
+ s.description = "Soulmate Rails is a tool to help solve the common problem of developing a fast autocomplete feature for Rails. It uses Redis's sorted sets to build an index of partial words and corresponding top matches. Modified by Jim Zhan to add utility functions and for bug fixing."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f)}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.add_runtime_dependency 'redis', '>= 2.0'
+ s.add_runtime_dependency 'json', '>= 1.7.7'
s.add_runtime_dependency 'multi_json', '>= 1.0'
s.add_runtime_dependency 'activesupport', '>= 0'
s.add_development_dependency 'rake', '>= 0'
s.add_development_dependency 'rspec', '>= 0'