aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorDerek Prior <derekprior@gmail.com>2012-09-12 20:15:38 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-09-12 20:36:00 -0500
commitceb05bd1b2f083c252980d4820346bc986c83e39 (patch)
treee190484f3bf982235294bd736208e59a551708f0 /railties/CHANGELOG.md
parente55c75d2d8c137a2482fb6464953801e69b6e335 (diff)
downloadrails-ceb05bd1b2f083c252980d4820346bc986c83e39.tar.gz
rails-ceb05bd1b2f083c252980d4820346bc986c83e39.tar.bz2
rails-ceb05bd1b2f083c252980d4820346bc986c83e39.zip
change app/plugin generators to be more SCM agnostic
Users of other SCM's can now generate rails apps that will add the "empty" directories to source control, but will not have a useless .gitignore or mis-named .gitkeep files. * Change `rails new` and `rails plugin new` generators to name the `.gitkeep` as `.keep` in a more SCM-agnostic way. * Change `--skip-git` option to only skip the `.gitignore` file and still generate the `.keep` files. * Add `--skip-keeps` option to skip the `.keep` files. It closes #2800.
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 f4f81f1128..1c28ac7476 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,15 @@
## Rails 4.0.0 (unreleased) ##
+* Change `rails new` and `rails plugin new` generators to name the `.gitkeep` files
+ as `.keep` in a more SCM-agnostic way.
+
+ Change `--skip-git` option to only skip the `.gitignore` file and still generate
+ the `.keep` files.
+
+ Add `--skip-keeps` option to skip the `.keep` files.
+
+ *Derek Prior & Francesco Rodriguez*
+
* Fixed support for DATABASE_URL environment variable for rake db tasks. *Grace Liu*
* rails dbconsole now can use SSL for MySQL. The database.yml options sslca, sslcert, sslcapath, sslcipher,