Rails/アップグレード/5.2から6.0
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(Rails/アップグレード/5.2から6.0);
*目次 [#s5fba0b1]
#contents
*関連ページ [#t98e6c7b]
*参考情報 [#s80de1ec]
-[[Rails アップグレードガイド - Railsガイド:https://rails...
*手順 [#w1bd9398]
-GemfileのRailsのバージョンを6.0系の最新版に置き換える。
-他、Rails 6.0でデモアプリを作成しGemfileを比較してアップ...
#pre{{
ruby '2.7.2'
gem 'rails', '6.0.3.6'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://githu...
gem 'webpacker', '~> 4.0'
# Turbolinks makes navigating your web application faster...
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.co...
gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/...
gem 'bootsnap', '>= 1.4.2', require: false
}}
-bundle updateする
bundle update
-設定ファイルの更新。古い設定ファイルを上書きしようとして...
bundle exec rails app:update
-IntelliJの場合、「Git > Compare with same repository ver...
-webpackerのinstall
bundle exec rails webpacker:install
終了行:
&tag(Rails/アップグレード/5.2から6.0);
*目次 [#s5fba0b1]
#contents
*関連ページ [#t98e6c7b]
*参考情報 [#s80de1ec]
-[[Rails アップグレードガイド - Railsガイド:https://rails...
*手順 [#w1bd9398]
-GemfileのRailsのバージョンを6.0系の最新版に置き換える。
-他、Rails 6.0でデモアプリを作成しGemfileを比較してアップ...
#pre{{
ruby '2.7.2'
gem 'rails', '6.0.3.6'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://githu...
gem 'webpacker', '~> 4.0'
# Turbolinks makes navigating your web application faster...
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.co...
gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/...
gem 'bootsnap', '>= 1.4.2', require: false
}}
-bundle updateする
bundle update
-設定ファイルの更新。古い設定ファイルを上書きしようとして...
bundle exec rails app:update
-IntelliJの場合、「Git > Compare with same repository ver...
-webpackerのinstall
bundle exec rails webpacker:install
ページ名: