Skip to content

Commit

Permalink
Merge pull request #10560 from jkutner/master
Browse files Browse the repository at this point in the history
Remove jruby-openssl from default Gemfile
  • Loading branch information
rafaelfranca committed May 12, 2013
2 parents 0854ba1 + 430e5dc commit 64a508f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions Gemfile
Expand Up @@ -60,11 +60,6 @@ platforms :jruby do
gem 'json'
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'

# This is needed by now to let tests work on JRuby
# TODO: When the JRuby guys merge jruby-openssl in
# jruby this will be removed
gem 'jruby-openssl'

group :db do
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
Expand Down
2 changes: 0 additions & 2 deletions railties/lib/rails/generators/rails/app/templates/Gemfile
Expand Up @@ -4,8 +4,6 @@ source 'https://rubygems.org'
<%= database_gemfile_entry -%>

<%= "gem 'jruby-openssl'\n" if defined?(JRUBY_VERSION) -%>
<%= assets_gemfile_entry %>
<%= javascript_gemfile_entry -%>

Expand Down
3 changes: 0 additions & 3 deletions railties/test/generators/app_generator_test.rb
Expand Up @@ -183,9 +183,6 @@ def test_config_jdbcmysql_database
run_generator([destination_root, "-d", "jdbcmysql"])
assert_file "config/database.yml", /mysql/
assert_gem "activerecord-jdbcmysql-adapter"
# TODO: When the JRuby guys merge jruby-openssl in
# jruby this will be removed
assert_gem "jruby-openssl" if defined?(JRUBY_VERSION)
end

def test_config_jdbcsqlite3_database
Expand Down

0 comments on commit 64a508f

Please sign in to comment.