aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorSam <sam.saffron@gmail.com>2017-05-30 09:14:00 -0400
committerSam <sam.saffron@gmail.com>2017-05-30 09:14:00 -0400
commit6cc153959ac04a39d4081a2cf23e1ff83c4efe3b (patch)
tree4572b531a6a1a2ccfa4e6609aaf64a6c801ac3b9 /railties
parent3fbe657e9b65814b3837fd13628e7a812dc0a0ea (diff)
downloadrails-6cc153959ac04a39d4081a2cf23e1ff83c4efe3b.tar.gz
rails-6cc153959ac04a39d4081a2cf23e1ff83c4efe3b.tar.bz2
rails-6cc153959ac04a39d4081a2cf23e1ff83c4efe3b.zip
Replace therubyracer with mini_racer
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/app_base.rb2
-rw-r--r--railties/test/generators/app_generator_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index e8b104a0b2..8429b6c7b8 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -349,7 +349,7 @@ module Rails
if defined?(JRUBY_VERSION)
GemfileEntry.version "therubyrhino", nil, comment
else
- GemfileEntry.new "therubyracer", nil, comment, { platforms: :ruby }, true
+ GemfileEntry.new "mini_racer", nil, comment, { platforms: :ruby }, true
end
end
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb
index 31a5efb1b7..8a8c9a35ce 100644
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -468,7 +468,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
if defined?(JRUBY_VERSION)
assert_gem "therubyrhino"
else
- assert_file "Gemfile", /# gem 'therubyracer', platforms: :ruby/
+ assert_file "Gemfile", /# gem 'mini_racer', platforms: :ruby/
end
end