Closed wendy0402 closed 9 years ago
This works for me; both ActionMailer::Base.ls
and ActionMailer::Base.allocate.ls
.
What are you calling ls
on? And what versions of ActionMailer, Looksee, and Ruby are you using?
If you're on the latest of everything then I'm guessing looksee isn't loaded. See if require 'looksee'
changes anything.
I'm using looksee (3.0.0)
, actionmailer (4.1.11)
, ruby 2.1.5
. I'm calling ls
on ActionMailer::Base
(ActionMailer::Base
) and has did require looksee
.
Can you use looksee 3.1.0? ls
is no longer implemented using method_missing
, which I think will solve this.
it works now, thanks @oggy !!
Hi, I tried to see all method of
ActionMailer::Base
usingls
, but it give you errorAbstractController::ActionNotFound: The action 'ls' could not be found for ActionMailer::Base
. It is related withmethod_missing
from ruby feature. it is themethod_missing
ofActionMailer::Base
:does looksee not support for class that using
method_missing
? :smile: thanks.