开发者

rails development environment not reloading views on change

开发者 https://www.devze.com 2023-02-11 09:07 出处:网络
I mucked around my development environment enough that now I have to restart my server every time I make a modification to the views or controllers. This is a pain with lots of small changes.

I mucked around my development environment enough that now I have to restart my server every time I make a modification to the views or controllers. This is a pain with lots of small changes.

Now even when my development.rb is back to the original one, the views,controllers need a restart to see the changes. I am not sure what is going on.

Any help would really appreciated as it is slowing my development.

Thanks

Here's my environment.rb:

config.time_zone = 'Eastern Time (US & Canada)'
config.cache_classes = true
ENV['NLS_LANG']='american_america.AL32UTF8'
config.i18n.default_locale = :en
config.gem "authlogic"
config.gem "matthuhiggins-foreigner", :lib => "foreigner"
config.gem "memcache-client", :lib => "memcached"
end

require "will_paginate"
require "RedCloth"
require "authlogic"
require 'memcached'

My development.rb looks like:

config.cache_classes = true
config.whiny_nils = true
config.action_controller.consider_all_requests_local = true
config.action_view.debug_rjs                         = true
config.action_controller.perform_caching             = false
#cache only the models to avoid nil.include? errors in development mode.
config.load_once_paths += %W(  #{RAILS_ROOT}/app/models  )

# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false

config.after_initialize do
Workling::Remote.dispatcher = Workling::Remote::Runners::StarlingRunner.new
end

I tried starting mongrel_start using verbose mode but it didn't help:

mongrel_rails start -B
** Starting Mongrel listening at 0.0.0.0:3000
** Installing debugging prefixed filters. Look in log/mongrel_debug for the files.
** Starting Rails with development environment...
** Rails loaded.
** Loading any Rails specific GemPlugins
** Signals ready.  TERM => stop. 开发者_Python百科 USR2 => restart.  INT => stop (no restart).
** Rails signals registered.  HUP => reload (without restart).  It might not work well.
** Mongrel 1.1.5 available at 0.0.0.0:3000


In my development.rb

# In the development environment your application's code is reloaded on
# every request.  This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
config.cache_classes = false

So, I guess you have to make it false

0

精彩评论

暂无评论...
验证码 换一张
取 消