1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Upgrade to Celluloid 0.12

This commit is contained in:
Mike Perham 2012-09-04 20:50:37 -07:00
parent 783b57ec77
commit a09e25dc02
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2.3.0
-----------
- Upgrade Celluloid to 0.12
- Upgrade Twitter Bootstrap to 2.1.0
- Rescue more Exceptions
2.2.1 2.2.1
----------- -----------

View file

@ -1,9 +1,8 @@
source 'http://rubygems.org' source 'http://rubygems.org'
gemspec gemspec
gem 'celluloid', ">= 0.12.0.pre" gem 'celluloid', "~> 0.12.0"
gem 'slim' gem 'slim'
gem 'sprockets'
gem 'sass' gem 'sass'
gem 'rails', '3.2.8' gem 'rails', '3.2.8'
gem 'sqlite3' gem 'sqlite3'

View file

@ -1,3 +1,3 @@
module Sidekiq module Sidekiq
VERSION = "2.2.1" VERSION = "2.3.0"
end end

View file

@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
gem.add_dependency 'redis', '~> 3' gem.add_dependency 'redis', '~> 3'
gem.add_dependency 'redis-namespace' gem.add_dependency 'redis-namespace'
gem.add_dependency 'connection_pool', '~> 0.9.2' gem.add_dependency 'connection_pool', '~> 0.9.2'
gem.add_dependency 'celluloid' gem.add_dependency 'celluloid', '~> 0.12.0'
gem.add_dependency 'multi_json', '~> 1' gem.add_dependency 'multi_json', '~> 1'
gem.add_development_dependency 'minitest', '~> 3' gem.add_development_dependency 'minitest', '~> 3'
gem.add_development_dependency 'sinatra' gem.add_development_dependency 'sinatra'