mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Update readme with latest supported versions
This commit is contained in:
parent
da28906e3a
commit
6923f88253
2 changed files with 9 additions and 6 deletions
|
@ -8,7 +8,7 @@ Simple, efficient background processing for Ruby.
|
|||
|
||||
Sidekiq uses threads to handle many jobs at the same time in the
|
||||
same process. It does not require Rails but will integrate tightly with
|
||||
Rails 3 to make background processing dead simple.
|
||||
Rails 3/4 to make background processing dead simple.
|
||||
|
||||
Sidekiq is compatible with Resque. It uses the exact same
|
||||
message format as Resque so it can integrate into an existing Resque processing farm.
|
||||
|
@ -24,8 +24,11 @@ the same CPU and perform the same amount of work.
|
|||
Requirements
|
||||
-----------------
|
||||
|
||||
I test on Ruby 1.9.3 and JRuby 1.7.x. Other versions/VMs are
|
||||
untested but I will do my best to support them. Ruby 1.8 is not supported.
|
||||
I test with the latest Ruby (2.0) and JRuby versions (1.7). Other versions/VMs
|
||||
are untested but might work fine.
|
||||
|
||||
The last two major Rails releases (3.2 and 4.0) are officially supported, other
|
||||
versions might work fine.
|
||||
|
||||
Redis 2.4 or greater is required.
|
||||
|
||||
|
|
|
@ -17,12 +17,12 @@ Gem::Specification.new do |gem|
|
|||
gem.add_dependency 'redis', '>= 3.0.4'
|
||||
gem.add_dependency 'redis-namespace', '>= 1.3.1'
|
||||
gem.add_dependency 'connection_pool', '>= 1.0.0'
|
||||
gem.add_dependency 'celluloid', '>= 0.14.1'
|
||||
gem.add_dependency 'celluloid', '>= 0.15.1'
|
||||
gem.add_dependency 'json'
|
||||
gem.add_development_dependency 'sinatra'
|
||||
gem.add_development_dependency 'minitest', '~> 5'
|
||||
gem.add_development_dependency 'rake'
|
||||
gem.add_development_dependency 'actionmailer', '>= 3.0.0'
|
||||
gem.add_development_dependency 'activerecord', '>= 3.0.0'
|
||||
gem.add_development_dependency 'actionmailer', '>= 3.2.0'
|
||||
gem.add_development_dependency 'activerecord', '>= 3.2.0'
|
||||
gem.add_development_dependency 'coveralls'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue