【发布时间】:2016-04-15 22:56:47
【问题描述】:
当我在我的 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 的笔记本电脑上遇到了这个问题。怎么回事?
【问题讨论】:
标签: ruby-on-rails ubuntu-14.04 gemfile web-console