mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Better wording in Ruby version mismatch error
This commit is contained in:
parent
c7e2588fbc
commit
edaa4333e8
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# encoding: utf-8
|
||||
require 'sidekiq/version'
|
||||
fail "Sidekiq #{Sidekiq::VERSION} does not support Ruby 1.9." if RUBY_PLATFORM != 'java' && RUBY_VERSION < '2.0.0'
|
||||
fail "Sidekiq #{Sidekiq::VERSION} does not support Ruby versions below 2.0.0." if RUBY_PLATFORM != 'java' && RUBY_VERSION < '2.0.0'
|
||||
|
||||
require 'sidekiq/logging'
|
||||
require 'sidekiq/client'
|
||||
|
|
Loading…
Add table
Reference in a new issue