Rakefile in ar-async-counter-cache-0.0.3 vs Rakefile in ar-async-counter-cache-0.1.1

- old
+ new

@@ -1,14 +1,17 @@ begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "ar-async-counter-cache" - gemspec.summary = "Increment ActiveRecord's counter cache column asynchronously (using Resque)." - gemspec.description = "Increment ActiveRecord's counter cache column asynchronously (using Resque)." + gemspec.summary = "Increment ActiveRecord's counter cache column asynchronously using Resque (and resque-lock-timeout)." + gemspec.description = "Increment ActiveRecord's counter cache column asynchronously using Resque (and resque-lock-timeout)." gemspec.email = "aaron.gibralter@gmail.com" gemspec.homepage = "http://github.com/agibralter/ar-async-counter-cache" gemspec.authors = ["Aaron Gibralter"] - gemspec.add_dependency("activerecord", ">= 2.3.5") + gemspec.add_dependency("activerecord", "~> 2.3.5") + gemspec.add_dependency("resque", "~> 1.10.0") + gemspec.add_dependency("resque-lock-timeout", "~> 0.2.1") + gemspec.files.exclude("pkg") end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end