diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-11-26 12:01:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-26 12:01:51 -0500 |
commit | 5921043f9e51dfe0750c13f1ca58d3c912e729c7 (patch) | |
tree | d0a106a3078a2fdf294a80ed3b322fe2edd63acc | |
parent | ebdf87a0bd6efc2f441a39517625af1a4d921496 (diff) | |
parent | 39c9f182bff6ca469ab018ab5cf8d55389c49d77 (diff) | |
download | rails-5921043f9e51dfe0750c13f1ca58d3c912e729c7.tar.gz rails-5921043f9e51dfe0750c13f1ca58d3c912e729c7.tar.bz2 rails-5921043f9e51dfe0750c13f1ca58d3c912e729c7.zip |
Merge pull request #27183 from maclover7/jm-av-release
Update RELEASING_RAILS.md for rails-ujs
-rw-r--r-- | RELEASING_RAILS.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/RELEASING_RAILS.md b/RELEASING_RAILS.md index ec8d2b657f..10a8bca3b3 100644 --- a/RELEASING_RAILS.md +++ b/RELEASING_RAILS.md @@ -103,17 +103,19 @@ branch. Run `rake install` to generate the gems and install them locally. Then try generating a new app and ensure that nothing explodes. -Verify that Action Cable's package.json is updated with the RC version. +Verify that Action Cable and Action View's package.json files are updated with +the RC version. This will stop you from looking silly when you push an RC to rubygems.org and then realize it is broken. ### Release to RubyGems and NPM. -IMPORTANT: The Action Cable client is released as an NPM package, so you must -have Node.js installed, have an NPM account (npmjs.com), and be an actioncable -package owner (`npm owner ls actioncable`) to do a full release. Do not release -until you're set up with NPM! +IMPORTANT: The Action Cable client and Action View's UJS adapter are released +as NPM packages, so you must have Node.js installed, have an NPM account +(npmjs.com), and be a package owner for `actioncable` and `rails-ujs` (you can +check this via `npm owner ls actioncable` and `npm owner ls rails-ujs`) in +order to do a full release. Do not release until you're set up with NPM! Run `rake release`. This will populate the gemspecs and NPM package.json with the current RAILS_VERSION, commit the changes, tag it, and push the gems to |