Sha256: c05db929152fab2804fbecf85ac2c48236f1f70c5510e09922e3926779221722

Contents?: true

Size: 1.53 KB

Versions: 3

Compression:

Stored size: 1.53 KB

Contents

source 'https://rubygems.org'

gem 'rake', '< 11'

gem 'rails', '~>4.0.13'

# mime-types 2.99.1 and 3.x introduce mime-types-data
# mime-types-data requires Ruby version >= 2.0
# mime-types 2.99 requires Ruby version >= 1.9.3
if RUBY_VERSION < '1.9.3'
  gem 'mime-types', '1.25.1'
elsif RUBY_VERSION < '2'
  gem 'mime-types', '< 3'
end

# Do not automatically require minitest, since this will break with rbx-2.2.5.
# rbx-2.2.5 helpfully bundles minitest-5.3.0.
# Our tests don't work with minitest-5.3.0.
# minitest-4.7.5 is the version we want to use here, but if you just do
# a require 'minitest' on rbx-2.2.5, you'll get 5.3.0 (since 4.7.5 doesn't
# actually have a minitest.rb file under lib/). The :require => false prevents
# us from inadvertently loading minitest 5.3.0 on rbx (we'll require
# minitest/unit instead via a different path).
gem 'minitest', '~>4.7.5', :require => false
gem 'mocha', :require => false
gem 'rack'
gem 'rack-test'

platforms :jruby do
  gem "activerecord-jdbcmysql-adapter", "~>1.3.0"
  gem "activerecord-jdbcsqlite3-adapter", "~>1.3.0"
  gem "jruby-openssl"
end

platforms :ruby do
  gem "mysql2", '~> 0.3.20'
  gem "sqlite3"
end

platforms :rbx do
  gem "rubysl"
  gem "json"
  # If we don't skip the require here, test-unit tries to install its at_exit
  # hook and run when we run our rake task to create the test DB.
  gem "rubysl-test-unit", :require => false
  gem "racc"  # https://github.com/rubinius/rubinius/issues/2632
end

gem "newrelic_rpm", :path => "../../.."

gem 'pry', '~> 0.9.12'
gem 'hometown', '~> 0.2.5'

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
newrelic_rpm-3.16.0.318 test/environments/rails40/Gemfile
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/newrelic_rpm-3.15.2.317/test/environments/rails40/Gemfile
newrelic_rpm-3.15.2.317 test/environments/rails40/Gemfile