-
-
Notifications
You must be signed in to change notification settings - Fork 25
Development
Eito Katagiri edited this page Apr 3, 2021
·
4 revisions
- Read Upgrading Ruby on Rails first.
- Edit
gem 'rails', '~> x.y.z'
part in version you want to update. - Run
bundle update rails
. If it succeeds, go to step 5. - Edit Gemfile to update depend gem, and run
bundle update rails <depend gem>
until it succeeds. - Run
bin/rails app:update and overwrite all files. Then, compare changes with
git diff` and put necessary configurations back. - Read "Upgrading from Rails a.b to Rails x.y" in [Upgrading Ruby on Rails] (https://guides.rubyonrails.org/upgrading_ruby_on_rails.html), and make change if needed.
- Push branch and create pull request.
- https://github.com/Safecast/safecastapi/pull/798 (From 5.2 to 6.0)
- https://github.com/Safecast/safecastapi/pull/658 (From 4.2 to 5.2)
- https://github.com/Safecast/safecastapi/pull/498 (From 4.1 to 4.2)