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

Is there any way in Rails to have the ENV reload "lib" files without having to restart the server? I'm working with some classes that I have inside a module in "lib". However, in order to see my changes I must restart the server each time. I'm guessing this is the way Rails is intended to work, but it is quite tedious when developing library files and/or plugins.

Surely I'm going about this wrong....?

Best

EDIT 1

Neither answer 1 nor 2 worked for me. Instead I was presented with errors from the controllers that made use of the Module. FYI, I have 3 files in my "lib/xmlitems" directory. I attempted to load that subdirectory then I referenced the single file that "requires" all other files. Am I to individually load all files?

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

Maybe http://www.williambharding.com/blog/rails/automatically-reload-modules-on-change-in-rails/ answers your question.

Hope this helps.

link|improve this answer
feedback

Also answered in this question.

link|improve this answer
feedback

Slightly hacky but .. you could move it into your models folder for now, then move back into lib when you are done developing.

You shouldn't really think about monkey patching rails so that you can reload your lib folder. Just leave it as is.

link|improve this answer
That hilarious, I'd actually been doing that previously, but I wanted to go ahead and get the code into a proper state for upcoming deployment. Anyway, I might actually got back to that for the last couple weeks of dev. – humble_coder Jul 12 '09 at 14:36
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

Your Answer

 
or
required, but never shown

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