Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rails 3.0.4アプリケーションを使用していますが、サーバーはRails3.0.6で動作します
アプリでRailsを更新するにはどうすればよいですか?
gemfileを使用していますか?
もしそうなら、それは単にあなたのgemfileの行を更新することの問題です:
gem 'rails', '3.0.6'
そして、コマンドラインから実行します。
bundle update
gemの依存関係を更新するには
rake db:migrate
データベースに変更があった場合
bundle install
宝石をインストールします。