Create my own dynamic "finder" method?

etc., so I thought I could implement my own dynamic method, like the dynamic finders! Instead of the calls above I'd like to call

user_requests_authorization_to_edit user_requests_authorization_to_create

You need to override method_missing, ie

def method_missing(method_id, *arguments)    if method_id looks like user_requests_authorization_to_something      user_requests_authorization_to(something)    else      super    end end

Fred