Rakefile in soulmate-0.0.1 vs Rakefile in soulmate-0.0.2
- old
+ new
@@ -8,20 +8,22 @@
exit e.status_code
end
require 'rake'
require 'jeweler'
+require './lib/soulmate/version.rb'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
- gem.name = "soulmate"
- gem.homepage = "http://github.com/seatgeek/soulmate"
- gem.license = "MIT"
- gem.summary = %Q{Redis-backed service for fast autocompleting - extracted from SeatGeek}
- gem.description = %Q{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 finished your sentences.}
- gem.email = "eric@seatgeek.com"
- gem.authors = ["Eric Waller"]
- # Include your dependencies below. Runtime dependencies are required when using your gem,
- # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
+ gem.name = "soulmate"
+ gem.version = Soulmate::Version::STRING
+ gem.homepage = "http://github.com/seatgeek/soulmate"
+ gem.license = "MIT"
+ gem.summary = %Q{Redis-backed service for fast autocompleting - extracted from SeatGeek}
+ gem.description = %Q{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.}
+ gem.email = "eric@seatgeek.com"
+ gem.homepage = "http://github.com/seatgeek/soulmate"
+ gem.authors = ["Eric Waller"]
+ # The versions specified here are pretty arbitrary right now...
gem.add_runtime_dependency 'redis', '>= 2.0'
gem.add_runtime_dependency 'vegas', '>= 0.1.0'
gem.add_runtime_dependency 'sinatra', '>= 1.0'
gem.add_runtime_dependency 'json', '~> 1.4.6'
# gem.add_development_dependency 'rspec', '> 1.2.3'