aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-07-01 17:34:31 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-07-01 22:19:47 -0300
commitfbd1e98cf983572ca9884f17f933ffe92833632a (patch)
treefd569888ce2e9f4cd09e1676d47868bd64e7613c /railties/CHANGELOG.md
parent14996a1490baefb34d64c68403c1b5bcf3773736 (diff)
downloadrails-fbd1e98cf983572ca9884f17f933ffe92833632a.tar.gz
rails-fbd1e98cf983572ca9884f17f933ffe92833632a.tar.bz2
rails-fbd1e98cf983572ca9884f17f933ffe92833632a.zip
Do not run `bundle install` when generating a new plugin.
Since bundler 1.12.0, the gemspec is validated so the `bundle install` command will fail just after the gem is created causing confusion to the users. This change was a bug fix to correctly validate gemspecs.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 83fe6f56a4..243f40a057 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,11 @@
+* Do not run `bundle install` when generating a new plugin.
+
+ Since bundler 1.12.0, the gemspec is validated so the `bundle install`
+ command will fail just after the gem is created causing confusion to the
+ users. This change was a bug fix to correctly validate gemspecs.
+
+ *Rafael Mendonça França*
+
* Default `config.assets.quiet = true` in the development environment. Suppress
logging of `sprockets-rails` requests by default.