In der Dokumentation von Rails (3.2.3) heißt es
Im Entwicklungsmodus (in dem Sie standardmäßig arbeiten) lädt Rails Ihre Anwendung bei jeder Browseranfrage neu, so dass Sie den Webserver nicht anhalten und neu starten müssen.
Aber eindeutig meine app lädt im Produktionsmodus out of the box.(Ich kann Rails.env eingeben und es sehen).
Warum?
Ich gehe dann zu environment.rb und füge hinzu
ENV["RAILS_ENV"] = "development"
und ist immer noch in Produktion. Irgendeine Idee?
Bearbeiten: Hier ist es
#Load the rails application
require File.expand_path('../application', __FILE__)
# Initialize the rails application
MyAppName::Application.initialize!
ENV["RAILS_ENV"] = "development"