search for: is_missing

Displaying 1 result from an estimated 1 matches for "is_missing".

Did you mean: do_missing
2006 Aug 14
0
ActionMailer in an infinite loop? Looks like framework bug.
...------------------- def inherited_with_helper(child) inherited_without_helper(child) begin child.master_helper_module = Module.new child.master_helper_module.send :include, master_helper_module child.helper child.name.underscore rescue MissingSourceFile => e raise unless e.is_missing?("helpers/#{child.name.underscore}_helper") end end The first line of this method is inherited_without_helper, but when I searched for this method I found that it was an alias for the same method. Here is where I found that problem: Line 15: helpers.rb: ActionMailer 1.2.5 ---------...