aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-17 20:02:46 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-17 20:35:09 -0300
commit10565895805887d4faf004a6f71219da177f78b7 (patch)
tree1a6f76bbc2dd3e897f45b118bb8212a7e9d14054 /railties/CHANGELOG.md
parent43262ea882e7ae6fe2b1baa9eb8de395dc881a8c (diff)
downloadrails-10565895805887d4faf004a6f71219da177f78b7.tar.gz
rails-10565895805887d4faf004a6f71219da177f78b7.tar.bz2
rails-10565895805887d4faf004a6f71219da177f78b7.zip
Add a generic --skip-gems options to generator
Also remove --skip-turbolinks. This option is useful if users want to remove some gems like jbuilder, turbolinks, coffee-rails, etc that don't have specific options on the generator. rails new my_app --skip-gems turbolinks coffee-rails
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 3350b1a4b2..98316d1eca 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,13 @@
+* Add a generic --skip-gems options to generator
+
+ This option is useful if users want to remove some gems like jbuilder,
+ turbolinks, coffee-rails, etc that don't have specific options on the
+ generator.
+
+ rails new my_app --skip-gems turbolinks coffee-rails
+
+ *Rafael Mendonça França*
+
* Invalid `bin/rails generate` commands will now show spelling suggestions.
*Richard Schneeman*