Sha256: 426cc44c33a53033f2ce5203bfe2a1de8ebc4c89e2634ddd56db66b005a9cc92

Contents?: true

Size: 851 Bytes

Versions: 4

Compression:

Stored size: 851 Bytes

Contents

suite_condition("SideKiq requires MRI 1.9.3 or JRuby 1.6 in 1.9 mode") do
  RUBY_VERSION >= '1.9.3' || (RUBY_PLATFORM == 'java' && RUBY_VERSION >= '1.9')
end

# Sidekiq 3.x does not support MRI 1.9.x
if RUBY_VERSION >= '2.0.0' || (RUBY_PLATFORM == 'java')
  gemfile <<-RB
    gem 'json'
    gem 'sidekiq', '~> 3.4.2'
    gem 'rack'

    gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
  RB
end

gemfile <<-RB
  gem 'json'
  gem 'sidekiq', '~> 2.17.8'
  gem 'rack'
  gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
RB

gemfile <<-RB
  # Almost oldest supported version
  # Having rbx issues on 2.8.0, 2.9.0 seems fine.
  gem 'json'
  gem 'sidekiq', '~> 2.9.0'
  gem 'timers', '~> 1.1.0'
  gem 'rack'
  gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
RB

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-3.14.1.311 test/multiverse/suites/sidekiq/Envfile
newrelic_rpm-3.14.0.305 test/multiverse/suites/sidekiq/Envfile
newrelic_rpm-3.13.2.302 test/multiverse/suites/sidekiq/Envfile
newrelic_rpm-3.13.1.300 test/multiverse/suites/sidekiq/Envfile