resque_mail_queue
resque_mail_queue copied to clipboard
use define method in method_missing
You probably should not be going to method missing for methods you have already called before... instead use define_method in the method missing implementation. It will speed things up.
Take a look at this post. http://www.alfajango.com/blog/method_missing-a-rubyists-beautiful-mistress/
I might contribute if I have time. I just created a similar project at work.
Thanks for sharing your code. Dave
Great suggestion and makes perfect sense.