在 rails (3.2.3) 的文档中它说
在开发模式下(这是您默认的工作模式),Rails 会在每次浏览器请求时重新加载您的应用程序,因此无需停止和重新启动 Web 服务器。
但很明显,我的应用程序在开箱即用的生产模式下加载。(我可以输入 Rails.env 并查看它)。
为什么?
然后我去 environment.rb 并添加
ENV["RAILS_ENV"] = "development"
它仍在生产中。任何的想法?
编辑:给你
#Load the rails application
require File.expand_path('../application', __FILE__)
# Initialize the rails application
MyAppName::Application.initialize!
ENV["RAILS_ENV"] = "development"