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

Mention that Sidekiq 3 requires Ruby 2.0 which will prevent 1.9 installs

This commit is contained in:
Julik Tarkhanov 2014-04-16 21:07:47 +02:00
parent 7e8448fe43
commit af1149a2a0

View file

@ -7,7 +7,10 @@ Gem::Specification.new do |gem|
gem.description = gem.summary = "Simple, efficient background processing for Ruby"
gem.homepage = "http://sidekiq.org"
gem.license = "LGPL-3.0"
# Sidekiq 3 requires ruby 2.0.x
gem.required_ruby_version = '~> 2.0'
gem.executables = ['sidekiq', 'sidekiqctl']
gem.files = `git ls-files | grep -Ev '^(myapp|examples)'`.split("\n")
gem.test_files = `git ls-files -- test/*`.split("\n")