Sha256: eff5154b969f0df71f0bc33683fe55f22251cb85481d56f6c2dd9078c96fe224

Contents?: true

Size: 1.54 KB

Versions: 2

Compression:

Stored size: 1.54 KB

Contents

if RUBY_VERSION >= '2.2.2' && RUBY_PLATFORM != 'java'
  gemfile <<-RB
    gem 'rails', '5.0.0'
    gem 'haml', :require => false
    gem 'minitest', '5.2.3'
  RB
end

if RUBY_VERSION < '2.4.0'
  gemfile <<-RB
    gem 'rails', '~>4.2.1'
    gem 'haml', :require => false
    gem 'minitest', '5.2.3'
    gem 'nokogiri', '< 1.7' if RUBY_VERSION < '2.1.0' # nokogiri 1.7.0 only supports >= 2.1.0
  RB

  gemfile <<-RB
    gem 'rails', '~>4.1.10'
    # Multiverse has an incompatibility with Minitest 5.3.0, so lock here for
    # now
    gem 'minitest', '5.2.3'

    # Load error with beta haml + rails, so hold require until test needs it.
    gem 'haml', '~>4.1.0.beta1', :require => false
  RB

  gemfile <<-RB
    gem 'rails', '~>4.0.13'
    gem 'haml', '4.0.2'   # Getting load issues with haml 4.0.3
  RB

  gemfile <<-RB
    gem 'rails', '~>3.2.22.2'
    gem 'i18n', '~>0.6.11'
    gem 'haml', '4.0.2'   # Getting load issues with haml 4.0.3
    gem 'minitest_tu_shim', :require => false
  RB

  gemfile <<-RB
    gem 'rails', '~>3.2.22.2'
    gem 'i18n', '~>0.6.11'
    gem 'sinatra', '~> 1.4.5'
    gem 'haml', '4.0.2'   # Getting load issues with haml 4.0.3
    gem 'minitest_tu_shim', :require => false
  RB

  gemfile <<-RB
    gem 'rails', '~>3.1.12'
    gem 'i18n', '~>0.6.11'
    gem 'haml', '4.0.2'   # Getting load issues with haml 4.0.3
    gem 'minitest_tu_shim', :require => false
  RB

  gemfile <<-RB
    gem 'rails', '~>3.0.20'
    gem 'haml', '4.0.2'   # Getting load issues with haml 4.0.3
    gem 'minitest_tu_shim', :require => false
  RB
end

# vim: ft=ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
newrelic_rpm-4.1.0.333 test/multiverse/suites/rails/Envfile
newrelic_rpm-4.0.0.332 test/multiverse/suites/rails/Envfile