diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-10-22 07:12:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-22 07:12:55 +0900 |
commit | 855ae222a9a4053c2b4f489d540bbb83cd92d95e (patch) | |
tree | dad037b3d342c2a499756b519f0745d83ee78311 /guides | |
parent | 6ecf0004d44a82312d5261e24cd0024e8e7fd8c9 (diff) | |
parent | 24367edbe6dae8fa1878423254d445177540e739 (diff) | |
download | rails-855ae222a9a4053c2b4f489d540bbb83cd92d95e.tar.gz rails-855ae222a9a4053c2b4f489d540bbb83cd92d95e.tar.bz2 rails-855ae222a9a4053c2b4f489d540bbb83cd92d95e.zip |
Merge pull request #34277 from bogdanvlviv/remove-javascripts-javascripts_engine-options-for-generators
Remove `javascripts` and `javascript_engine` options for generators
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 812565b207..61bb35cf93 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -200,8 +200,6 @@ The full set of methods that can be used in this block are as follows: * `helper` defines whether or not to generate helpers. Defaults to `true`. * `integration_tool` defines which integration tool to use to generate integration tests. Defaults to `:test_unit`. * `system_tests` defines which integration tool to use to generate system tests. Defaults to `:test_unit`. -* `javascripts` turns on the hook for JavaScript files in generators. Used in Rails for when the `scaffold` generator is run. Defaults to `true`. -* `javascript_engine` configures the engine to be used (for eg. coffee) when generating assets. Defaults to `:js`. * `orm` defines which orm to use. Defaults to `false` and will use Active Record by default. * `resource_controller` defines which generator to use for generating a controller when using `rails generate resource`. Defaults to `:controller`. * `resource_route` defines whether a resource route definition should be generated |