ルートを生成しようとしています (私が取り組んでいるアプリケーションでは数週間は問題なく機能していました)、突然、次のメッセージが表示されます。
You have already activated rake 10.0.3, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve this.
bundle exec を実行しても問題は解決しません。Gemfile.lock を見ると、次のように表示されます。
railties (3.2.3)
actionpack (= 3.2.3)
activesupport (= 3.2.3)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
rake (0.9.2.2)
その最後の行を次のように変更してみました。
rake (>= 0.9.2.2)
次のエラーメッセージが表示されます。
There was an error in your Gemfile, and Bundler cannot continue.
何か案は?