Rakefile in soulmate-0.1.2 vs Rakefile in soulmate-0.1.3
- old
+ new
@@ -20,16 +20,10 @@
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"]
- gem.add_development_dependency "shoulda", ">= 0"
- gem.add_development_dependency "bundler", "~> 1.0"
- gem.add_development_dependency "jeweler", "~> 1.5"
- 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 'multi_json', '>= 1.0'
+ # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|