Rails4/アップグレード
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(Rails4/アップグレード);
*目次 [#gf30637e]
#contents
*関連ページ [#z594aaf6]
-[[Rails3/アップグレード]]
-[[Rails4]]
*参考情報 [#e1875784]
-[[Ruby on Rails Guides:http://edgeguides.rubyonrails.org...
*Rails 4.0 -> Rails 4.1 [#ff44893b]
**手順 [#ya772ee6]
-Gemfileの編集
gem 'rails', '4.1.1'
-bundle実行
bundle update
-railsをアップデート
bundle exec rake rails:update
-conflictした設定ファイルをgit diffしながら修正していく
**トラブルシューティング [#f667959f]
***bootstrap_flashが表示されない [#pa5de825]
-https://github.com/seyhunak/twitter-bootstrap-rails/issu...
***No route matches [PATCH] [#v7c57453]
-routes.rbの定義で、put〜となっているのを、patch〜に修正...
*Rails3.2 ->Rails4.0 [#qe656256]
**参考情報 [#r3ae4013]
-[[Rails3.2 -> Rails4.0 アップグレード - 130単位:http:...
-[[Rails3.2 to Rails4 アップデートしてみた - Qiita:http:/...
-[[Rails 4.0 にアップグレードした - @m4i's blog:http://bl...
-[[#415 Upgrading to Rails 4 - RailsCasts:http://railscas...
**手順 [#c91f51f0]
-Gemfileの編集
gem 'rails', '4.0.5'
-bundle実行
bundle update
-railsのバージョンを最新に変更
bundle exec rake rails:update
-conflictした設定ファイルをgit diffしながら修正していく
**ソースコードの修正 [#a9895b60]
***ActiveRecordの修正 [#qda88c94]
-http://guides.rubyonrails.org/upgrading_ruby_on_rails.ht...
-:confirmは、 data: { confirm: 'Are you sure?' }のように...
***StrongParameterまわりの修正 [#m568ffb9]
-とりあえず凌ぎたい場合、protected_attributesというGemが...
**Gemのアップデート [#xf022673]
***simple-captchaのアップデート [#n1b4f921]
-[[pludoni/simple-captcha:https://github.com/pludoni/simp...
***act_as_paranoidのアップデート [#a2ceb9c8]
-[[Rails4と3で論理削除を行うためのGem Kakurenbo の紹介と...
**トラブルシューティング [#g98f720b]
***You should not use the `match` methodのエラーが発生 [#...
-[[Rails4で「You should not use the `match` method〜」のR...
***Pending Migrationで実行できない [#id226ff1]
-[[ruby on rails - How do you skip failed migrations? (ra...
-db/migrate/99999999999999_XXXX.rbがあるのが原因。以下を...
insert into schema_migrations (version) values ('9999999...
-[[postgresql - How to skip rails migrations after creati...
***kaminari+twitter-bootstrapの表示がみだれる [#b53ae9ee]
***ajaxがうまく動かない? [#ud046185]
***正規表現で怒られる [#h4104846]
-[[Rails4では正規表現が厳しくなった。 - Programmer_Mixin_...
終了行:
&tag(Rails4/アップグレード);
*目次 [#gf30637e]
#contents
*関連ページ [#z594aaf6]
-[[Rails3/アップグレード]]
-[[Rails4]]
*参考情報 [#e1875784]
-[[Ruby on Rails Guides:http://edgeguides.rubyonrails.org...
*Rails 4.0 -> Rails 4.1 [#ff44893b]
**手順 [#ya772ee6]
-Gemfileの編集
gem 'rails', '4.1.1'
-bundle実行
bundle update
-railsをアップデート
bundle exec rake rails:update
-conflictした設定ファイルをgit diffしながら修正していく
**トラブルシューティング [#f667959f]
***bootstrap_flashが表示されない [#pa5de825]
-https://github.com/seyhunak/twitter-bootstrap-rails/issu...
***No route matches [PATCH] [#v7c57453]
-routes.rbの定義で、put〜となっているのを、patch〜に修正...
*Rails3.2 ->Rails4.0 [#qe656256]
**参考情報 [#r3ae4013]
-[[Rails3.2 -> Rails4.0 アップグレード - 130単位:http:...
-[[Rails3.2 to Rails4 アップデートしてみた - Qiita:http:/...
-[[Rails 4.0 にアップグレードした - @m4i's blog:http://bl...
-[[#415 Upgrading to Rails 4 - RailsCasts:http://railscas...
**手順 [#c91f51f0]
-Gemfileの編集
gem 'rails', '4.0.5'
-bundle実行
bundle update
-railsのバージョンを最新に変更
bundle exec rake rails:update
-conflictした設定ファイルをgit diffしながら修正していく
**ソースコードの修正 [#a9895b60]
***ActiveRecordの修正 [#qda88c94]
-http://guides.rubyonrails.org/upgrading_ruby_on_rails.ht...
-:confirmは、 data: { confirm: 'Are you sure?' }のように...
***StrongParameterまわりの修正 [#m568ffb9]
-とりあえず凌ぎたい場合、protected_attributesというGemが...
**Gemのアップデート [#xf022673]
***simple-captchaのアップデート [#n1b4f921]
-[[pludoni/simple-captcha:https://github.com/pludoni/simp...
***act_as_paranoidのアップデート [#a2ceb9c8]
-[[Rails4と3で論理削除を行うためのGem Kakurenbo の紹介と...
**トラブルシューティング [#g98f720b]
***You should not use the `match` methodのエラーが発生 [#...
-[[Rails4で「You should not use the `match` method〜」のR...
***Pending Migrationで実行できない [#id226ff1]
-[[ruby on rails - How do you skip failed migrations? (ra...
-db/migrate/99999999999999_XXXX.rbがあるのが原因。以下を...
insert into schema_migrations (version) values ('9999999...
-[[postgresql - How to skip rails migrations after creati...
***kaminari+twitter-bootstrapの表示がみだれる [#b53ae9ee]
***ajaxがうまく動かない? [#ud046185]
***正規表現で怒られる [#h4104846]
-[[Rails4では正規表現が厳しくなった。 - Programmer_Mixin_...
ページ名: