aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-06-13 07:44:49 +0900
committerYuji Yaginuma <yuuji.yaginuma@gmail.com>2017-11-18 12:23:53 +0900
commit60c550370a0a915d7a74e1c128d3b233ea5aca7b (patch)
tree6431fe3fa5c93fb5909968ee5c2aa79bd714630d /railties/CHANGELOG.md
parent56c1326abb11ed275f04b6e0592ca66975e37f24 (diff)
downloadrails-60c550370a0a915d7a74e1c128d3b233ea5aca7b.tar.gz
rails-60c550370a0a915d7a74e1c128d3b233ea5aca7b.tar.bz2
rails-60c550370a0a915d7a74e1c128d3b233ea5aca7b.zip
Deprecate an `after_bundle` callback in Rails plugin templates
Since fbd1e98cf983572ca9884f17f933ffe92833632a, Rails plugin does not run `bundle install` when generating. Therefore, `after_bundle` callback is not actually executed after `bundle`. Since there is a difference between the name and the actual behavior, I think that should be remove.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index e69a1231b1..d086248278 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Deprecate `after_bundle` callback in Rails plugin templates.
+
+ *Yuji Yaginuma*
+
* `rails new` and `rails plugin new` get `Active Storage` by default.
Add ability to skip `Active Storage` with `--skip-active-storage`
and do so automatically when `--skip-active-record` is used.