提交 6cc15395 编写于 作者: S Sam

Replace therubyracer with mini_racer

上级 3fbe657e
......@@ -868,7 +868,7 @@ pre-existing JavaScript runtimes, you may want to add one to your Gemfile:
```ruby
group :production do
gem 'therubyracer'
gem 'mini_racer'
end
```
......
......@@ -208,7 +208,7 @@ TIP: Compiling CoffeeScript and JavaScript asset compression requires you
have a JavaScript runtime available on your system, in the absence
of a runtime you will see an `execjs` error during asset compilation.
Usually macOS and Windows come with a JavaScript runtime installed.
Rails adds the `therubyracer` gem to the generated `Gemfile` in a
Rails adds the `mini_racer` gem to the generated `Gemfile` in a
commented line for new apps and you can uncomment if you need it.
`therubyrhino` is the recommended runtime for JRuby users and is added by
default to the `Gemfile` in apps generated under JRuby. You can investigate
......
......@@ -349,7 +349,7 @@ def javascript_runtime_gemfile_entry
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
......
......@@ -468,7 +468,7 @@ def test_inclusion_of_javascript_runtime
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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册