문제

After many googling I've tried adding both of these to my config and yet reloading doesn't happen:

config.autoload_paths += %W(#{config.root}/lib)
config.autoload_paths += Dir["#{config.root}/lib/**/"]

I make changes to files under /lib but refreshing in Pow doesn't reload the changes

What am I missing?

도움이 되었습니까?

해결책

You'll want to restart pow after changing files in /lib because Rails initializes objects here as it starts up and doesn't load them again after having started up (so changes while the server is up won't make a difference). To overcome this, you have a few options:

  1. You may want to look at using require_dependency.

  2. You can restart Pow by touching the restart.txt file: touch ~/.pow/restart.txt

  3. For a more convenient solution if you're changing your lib folder a lot, add anvil to handle your restarts easily.

  4. If you don't want to do this, just add your classes to the /app path into a new folder.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top