Railsアップデート手順

  1. まずはテストのカバレッジを上げる
    • bundle exec rspec
  2. Rails以外のGemをアップデート
    • bundle outdated
  3. rubyのアップデート
    • rbenv local X.Y.Z
  4. Railsのアップデート
    • bundle update rails
  5. package.jsonアップデート
    • touch .nxurc.json(アップデート除外パッケージ)
    • `npx -p npm-check-updates -c “ncu –target patch”`
    • `npx -p npm-check-updates -c “ncu –target minor”`
    • `npx -p npm-check-updates -c “ncu”`