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:
parent
7e8448fe43
commit
af1149a2a0
1 changed files with 4 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue