Skip to content

Instantly share code, notes, and snippets.

@fdocr
Created January 3, 2022 20:51
Show Gist options
  • Save fdocr/affa90f978b751bab7aaf27db74c2068 to your computer and use it in GitHub Desktop.
Save fdocr/affa90f978b751bab7aaf27db74c2068 to your computer and use it in GitHub Desktop.
Rails7 Upgrade Checklist
  1. Gemfile && bundle update
  2. Remove Webpacker+Spring
  3. rails app:update
    1. YOLO -> Upgrade load_defaults version in config/application.rb to 7.0
    2. or configure defaults (as suggested)
  4. Install script of new gems
    1. bin/rails importmap:install
    2. bin/rails turbo:install
    3. bin/rails tailwindcss:install
  5. Move assets from webpacker -> importmap folders
  6. bin/setup && bin/startup
  7. More?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment