aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2017-05-30 09:10:02 -0500
committerGitHub <noreply@github.com>2017-05-30 09:10:02 -0500
commit53c8dff33b2d68a9824efd19f431bb0e5f64d23a (patch)
tree4572b531a6a1a2ccfa4e6609aaf64a6c801ac3b9 /railties/lib
parent3fbe657e9b65814b3837fd13628e7a812dc0a0ea (diff)
parent6cc153959ac04a39d4081a2cf23e1ff83c4efe3b (diff)
downloadrails-53c8dff33b2d68a9824efd19f431bb0e5f64d23a.tar.gz
rails-53c8dff33b2d68a9824efd19f431bb0e5f64d23a.tar.bz2
rails-53c8dff33b2d68a9824efd19f431bb0e5f64d23a.zip
Merge pull request #29285 from SamSaffron/remove_therubyracer
Replace therubyracer with mini_racer
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/generators/app_base.rb2
1 files changed, 1 insertions, 1 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