up vote 7 down vote favorite
3
share [g+] share [fb]

This is a follow up to this question. During development I have to restart the rails app everytime I change the code in lib/ in order for the code changes to take effect. How do I get this code to automatically reload like controllers, models, etc?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Witold Rugowski's got some great information on this link.

link|improve this answer
Here's a link to the article. I got it to load. nhw.pl/wp/2009/01/07/reloading-your-plugin-in-development-mode – Scott May 20 '09 at 17:58
feedback
module ActsAsReloadable
  def self.included(base)
    ActiveSupport::Dependencies.explicitly_unloadable_constants << base.name if Rails.env == 'development'
  end
end

To use it, simply include ActsAsReloadable in your lib/* files and add config.autoload_paths += %W(#{config.root}/lib) in config/application.rb

link|improve this answer
feedback

why not just enter

load Rails.root + '/lib/your_lib.rb'
link|improve this answer
this works just loading e.g. it in your controller – ecoologic Jul 14 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.