Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
Regenerate gemspec for version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erwaller committed May 15, 2014
1 parent 6afbffd commit 0bd82a5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions soulmate.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = "soulmate"
s.version = "1.0.0"
s.version = "1.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Eric Waller"]
s.date = "2013-02-04"
s.date = "2014-05-15"
s.description = "Soulmate is a tool to help solve the common problem of developing a fast autocomplete feature. It uses Redis's sorted sets to build an index of partial words and corresponding top matches, and provides a simple sinatra app to query them. Soulmate finishes your sentences."
s.email = "[email protected]"
s.executables = ["soulmate", "soulmate-web"]
Expand All @@ -27,6 +27,7 @@ Gem::Specification.new do |s|
"bin/soulmate-web",
"lib/soulmate.rb",
"lib/soulmate/base.rb",
"lib/soulmate/config.rb",
"lib/soulmate/helpers.rb",
"lib/soulmate/loader.rb",
"lib/soulmate/matcher.rb",
Expand All @@ -43,22 +44,22 @@ Gem::Specification.new do |s|
s.homepage = "http://github.com/seatgeek/soulmate"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.rubygems_version = "1.8.23.2"
s.summary = "Redis-backed service for fast autocompleting - extracted from SeatGeek"

if s.respond_to? :specification_version then
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<redis>, [">= 2.0"])
s.add_runtime_dependency(%q<redis>, [">= 3.0"])
s.add_runtime_dependency(%q<vegas>, [">= 0.1.0"])
s.add_runtime_dependency(%q<sinatra>, [">= 1.0"])
s.add_runtime_dependency(%q<multi_json>, [">= 1.0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5"])
else
s.add_dependency(%q<redis>, [">= 2.0"])
s.add_dependency(%q<redis>, [">= 3.0"])
s.add_dependency(%q<vegas>, [">= 0.1.0"])
s.add_dependency(%q<sinatra>, [">= 1.0"])
s.add_dependency(%q<multi_json>, [">= 1.0"])
Expand All @@ -67,7 +68,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<jeweler>, ["~> 1.5"])
end
else
s.add_dependency(%q<redis>, [">= 2.0"])
s.add_dependency(%q<redis>, [">= 3.0"])
s.add_dependency(%q<vegas>, [">= 0.1.0"])
s.add_dependency(%q<sinatra>, [">= 1.0"])
s.add_dependency(%q<multi_json>, [">= 1.0"])
Expand Down

0 comments on commit 0bd82a5

Please sign in to comment.