On Oct 15, 3:33 pm, Ben Johnson <[EMAIL PROTECTED]> wrote: > This is really strange: > > >> User.send(:merge_joins, "one", "two") > => ["one", "two"] > >> User.respond_to?(:merge_joins) > > => false > > Am I missing something here? Shouldn't the respond_to return true? > > thanks for your help > -- > Posted viahttp://www.ruby-forum.com/.
If User is actually using method_missing to handle the merge_joins message, then respond_to? won't be able to see it. Jeff purpleworkshops.com softiesonrails.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

