Rails アプリで実行するbundle exec rake test
と、次のメッセージが表示されます
Web Console is activated in the test environment, which is
usually a mistake. To ensure it's only activated in development
mode, move it to the development group of your Gemfile:
gem 'web-console', group: :development
If you still want to run it the test environment (and know
what you are doing), put this in your Rails application
configuration:
config.web_console.development_only = false
ただし、私の Gemfile には、テスト環境と開発環境の両方に Web コンソールがあります。
group :development, :test do
gem 'sqlite3'
gem 'byebug'
gem 'web-console'
gem 'spring'
end
これはまさに、正常に動作するCloud9アカウントでの方法ですが、Ubuntu 14.04を実行しているラップトップを使用しており、この問題が発生しています。どうしたの?