Skip to content

Commit

Permalink
Merge pull request #1560 from newrelic/jpirate_says_jar
Browse files Browse the repository at this point in the history
  • Loading branch information
fallwith authored Oct 21, 2022
2 parents 6ce3ec6 + 463b7d4 commit 98b2486
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 25 deletions.
1 change: 0 additions & 1 deletion test/environments/rails32/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ gem "newrelic_rpm", :path => "../../.."
platforms :jruby do
gem "activerecord-jdbcmysql-adapter"
gem "activerecord-jdbcsqlite3-adapter"
gem "jruby-openssl"
end

platforms :ruby, :rbx do
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails40/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ 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, :rbx do
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails41/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ 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
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails42/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ gem 'sprockets', '3.7.2'
platforms :jruby do
gem "activerecord-jdbcmysql-adapter", "~>1.3.0"
gem "activerecord-jdbcsqlite3-adapter", "~>1.3.0"
gem "jruby-openssl"
end

platforms :ruby, :rbx do
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails50/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ gem 'sprockets', '3.7.2'
platforms :jruby do
gem "activerecord-jdbcmysql-adapter", "~> 50.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 50.0"
gem "jruby-openssl"
end

platforms :ruby, :rbx do
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails51/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ gem 'sprockets', '3.7.2'
platforms :jruby do
gem "activerecord-jdbcmysql-adapter", "~> 51.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 51.0"
gem "jruby-openssl"
end

platforms :ruby, :rbx do
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails52/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ gem 'rack-test'
gem 'sprockets', '3.7.2'

platforms :jruby do
gem "jruby-openssl"
gem "activerecord-jdbcmysql-adapter", "~> 52.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 52.0"
end
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails60/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ gem 'rack-test'
gem 'sprockets', '3.7.2'

platforms :jruby do
gem "jruby-openssl"
gem "activerecord-jdbcmysql-adapter", "~> 60.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 60.0"
end
Expand Down
1 change: 0 additions & 1 deletion test/environments/rails61/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ gem 'rack-test'
gem 'sprockets', '3.7.2'

platforms :jruby do
gem 'jruby-openssl'
gem "activerecord-jdbcmysql-adapter", "~> 61.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 61.0"
end
Expand Down
4 changes: 0 additions & 4 deletions test/environments/rails70/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ gem 'minitest', '5.2.3'
gem 'minitest-stub-const', '~> 0.6'
gem 'mocha', '~> 1.1.0', require: false

platforms :jruby do
gem 'jruby-openssl'
end

platforms :ruby, :rbx do
gem 'mysql2', '>= 0.5.4'
gem 'sqlite3', '~> 1.4'
Expand Down
4 changes: 0 additions & 4 deletions test/environments/railsedge/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ gem 'minitest', '5.2.3'
gem 'minitest-stub-const', '~> 0.6'
gem 'mocha', '~> 1.1.0', require: false

platforms :jruby do
gem 'jruby-openssl'
end

platforms :ruby, :rbx do
gem 'mysql2', '>= 0.5.4'
gem 'sqlite3', '~> 1.4'
Expand Down
5 changes: 0 additions & 5 deletions test/multiverse/lib/multiverse/suite.rb
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ def generate_gemfile(gemfile_text, env_index, local = true)
f.puts 'source "https://rubygems.org"'
f.print gemfile_text
f.puts newrelic_gemfile_line unless gemfile_text =~ /^\s*gem .newrelic_rpm./
f.puts jruby_openssl_line unless gemfile_text =~ /^\s*gem .jruby-openssl./ || (defined?(JRUBY_VERSION) && JRUBY_VERSION > '1.7')
f.puts minitest_line unless gemfile_text =~ /^\s*gem .minitest[^_]./
f.puts "gem 'rake'" unless gemfile_text =~ /^\s*gem .rake[^_]./ || suite == 'rake'

Expand Down Expand Up @@ -293,10 +292,6 @@ def newrelic_gemfile_line
line
end

def jruby_openssl_line
"gem 'jruby-openssl', '~> 0.11.0', :require => false, :platforms => [:jruby]"
end

def minitest_line
"gem 'minitest', '~> #{minitest_version}', :require => false"
end
Expand Down
3 changes: 0 additions & 3 deletions test/multiverse/suites/config_file_loading/Envfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ def gem_list(psych_version = nil)
# various places.
gem 'fakefs', :require => false

# Because we delay the agent, order of jruby-openssl matters
gem 'jruby-openssl' if RUBY_PLATFORM == 'java'

gem 'psych'#{psych_version}
gem 'jar-dependencies', '0.4.1' if RUBY_PLATFORM == 'java'

Expand Down

0 comments on commit 98b2486

Please sign in to comment.