Sha256: ff732dbb46c224bde9dc25b07b7e066b8cb08fc2838598497bb7a9a474940a50
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
source 'https://rubygems.org' gem 'rake', '< 11' gem 'rails', '~>4.2.1' # 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 gem 'minitest', '5.2.3' gem 'mocha', '1.1', :require => false gem 'rack', '< 2.0.0' 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" gem "sqlite3" end platforms :rbx do gem "rubysl" gem "json", '< 2.0.0' # 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 # Compilation issues with rubysl-openssl 2.2.1, lock at 2.1.0 for now. # https://github.com/rubysl/rubysl-openssl/issues/11 gem "rubysl-openssl", "2.1.0" end gem "newrelic_rpm", :path => "../../.." gem 'pry', '~> 0.9.12' gem 'hometown', '~> 0.2.5'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-3.17.2.327 | test/environments/rails42/Gemfile |
newrelic_rpm-3.17.1.326 | test/environments/rails42/Gemfile |
newrelic_rpm-3.17.0.325 | test/environments/rails42/Gemfile |