Sha256: c8a4a1e7e771f99efb9f145188d695e1840de7d54f1dbfc49d0b84f0ce165170

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

suite_condition("only test on < 2.4"){ RUBY_VERSION < '2.4.0' }

gemfile <<-RB
  gem 'activemerchant', '~>1.43.1'
  gem 'rack'

  if RUBY_VERSION <= '1.9.2'
    # Very special versioning to keep us running on 1.8.7 versions of Ruby
    gem 'activesupport', '~>2.3.14', :require => 'active_support'
    gem 'nokogiri', '~>1.4.7'
    gem 'i18n', '~>0.6.11'
  else
    gem 'activesupport', '~>4.0.4'
    gem 'nokogiri', '~>1.6.1'
  end

  # Need to load newrelic_rpm after ActiveMerchant Gateways are required
  gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
RB

gemfile <<-RB
  gem 'activemerchant', '~>1.25.0'
  gem 'active_utils', '2.2.3'
  gem 'rack'

  if RUBY_VERSION <= '1.9.2'
    # Very special versioning to keep us running on 1.8.7 versions of Ruby
    gem 'activesupport', '~>2.3.14', :require => 'active_support'
    gem 'nokogiri', '~>1.4.7'
    gem 'i18n', '~>0.6.11'
  else
    gem 'activesupport', '~>4.0.4'
    gem 'nokogiri', '~>1.5.11'
  end

  # Need to load newrelic_rpm after ActiveMerchant Gateways are required
  gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
RB

# vim: ft=ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
newrelic_rpm-3.18.1.330 test/multiverse/suites/activemerchant/Envfile
newrelic_rpm-3.18.0.329 test/multiverse/suites/activemerchant/Envfile