I'm monkey-patching a Rails engine with something like:

SomeClass.class_eval do
  # ...
end

The first time I hit the web site, on development mode at least, it works, but the second time it's like my patch never existed. I presume it's Rails auto-reloading the engine (which is installed in vendor/) and not reloading my code. This is Rails 2.3.

Any ideas how to do it so that my code also gets reloaded?

Thanks.

link|improve this question

I hit a similar problem once and the only way I could fix it was by running rails in production mode on my dev machine :(. I'm also interested on this. – kikito Dec 16 '10 at 12:40
@egarcia: ouch, I hope we can find a better solution this time. – J. Pablo Fernández Dec 16 '10 at 12:42
how do you run your code, is it webbrick, mongrel or passenger ? please post rails and server versions. – mpapis Dec 20 '10 at 23:15
1  
Where is your monkey patch? – Aaron Gibralter Mar 25 '11 at 19:37
feedback

4 Answers

EDIT: This solution only works for Rails 3 since it's dependent on some functionality in Rails::Railtie. Put this code in an initializer.

This question is quite old, but here's a solution I found:

Rails.configuration.to_prepare do
  SomeClass.class_eval do
    # ...
  end
end

This forces Rails to reload the class on every request in development mode, but only once in production.

link|improve this answer
This worked perfectly for me on Rails 3. Thank you. – Andy Stewart Oct 6 '11 at 14:32
feedback

Unfortunately, there is no way to hook into the reloading mechanism of Rails 2.x. What you could do, is place your patch somewhere in the app or lib directory. (lib/core_ext is probably the preferred location). Then add the directory to the autoload_paths in your config.

You might also need to open the class, rather than using class_eval.

link|improve this answer
The monkey-patch is already on lib/ which is already on the autoload_paths on Rails 2. I'm not sure why, but opening the class with the class keyword instead of class_eval results into an error, an exception thrown later on. – J. Pablo Fernández Dec 16 '10 at 13:01
feedback

If you place the patch in any .rb file inside /config/initializers, it should work.

link|improve this answer
feedback

It's ugly, but I found that if I put this kind of code at the bottom of environments.rb it always guaranteed correct load-order on startup.

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.