I'm trying to call a modual method from a class method with the same
name. The code I tried and error are below. I think my "Debug.whoAmI?"
line is the problem. What is the correct syntax to call the moduals
method?
On Friday 04 November 2005 17:32, petermichaux@yahoo.com wrote:
Hi,
I'm trying to call a modual method from a class method with the
same name. The code I tried and error are below. I think my
"Debug.whoAmI?" line is the problem. What is the correct syntax to
call the moduals method?
Thanks,
Peter
==== CODE ===
module Debug
def whoAmI?
"#{self.class.name}"
end
end
class EightTrack
include Debug
def whoAmI?
Debug.whoAmI?
end
end
et = EightTrack.new
p et.whoAmI?
=== OUTPUT ERROR ===
peter$ ruby mixin.rb
mixin.rb:10:in `whoAmI?': undefined method `whoAmI?' for
Debug:Module (NoMethodError)
from mixin.rb:16
----------------------
module Debug
def whoAmI?
"#{self.class.name}"
end
end
What if two moduals are included and each uses the same method name? In
the example below the Debug whoAmI? method is called. How do I call the
Burp whoAmI? method?
What if two moduals are included and each uses the same method
name? In the example below the Debug whoAmI? method is called. How
do I call the Burp whoAmI? method?
There is no clean and simple way to do so.
module Debug
def whoAmI?
"#{self.class.name}"
end
end
module Burp
def whoAmI?
"Burp #{self.class.name}"
end
end
class EightTrack
include Burp
include Debug
The following method definition is useless.
Remove it and you'll get the same result.
···
On Friday 04 November 2005 18:07, petermichaux@yahoo.com wrote:
What if two moduals are included and each uses the same method name?
In the example below the Debug whoAmI? method is called. How do I
call the Burp whoAmI? method?
You don't (although you could with Burp.instance_method(:whoAmI?).bind(self).call). Messing like this with names is not advisable.
Note also that "self.class.name" will always yield the same result regardless in which module the method was defined. Note also that by convention a) methods ending in a question mark are reserved for boolean queries and b) Ruby uses lowe_case_method_names.
Kind regards
robert
···
Thanks,
Peter
module Debug
def whoAmI?
"#{self.class.name}"
end
end
module Burp
def whoAmI?
"Burp #{self.class.name}"
end
end
class EightTrack
include Burp
include Debug
def whoAmI?
super
end
end
no clean and simple way? bummer. I thought there would be some sort of
namespace separation between the two moduals. When they are mixed into
the EightTrack class are the namespaces lost?
You don't (although you could with
Burp.instance_method(:whoAmI?).bind(self).call). Messing like this with names is not advisable.
Good to know that there is a way to do this. Too bad it is so messy
though. I'm thinking about using two Rails plugins in one model class.
Since rails has a magic after_find callback method I was thinking about
using this in each plugin since the plugins can be used independently.
Since my model must call both of these methods I will have a third
after_find callback method in the model that calls the other two. Now
why doesn't the example below make two who_am_i calls? One to Burp and
one to Debug. It only calls Burp.
Note also that by
convention a) methods ending in a question mark are reserved for boolean
queries and b) Ruby uses lowe_case_method_names.
Good to know. I just cut and pasted the example from the the first
edition of Ruby Programming
class EightTrack
include Burp
include Debug
def who_am_i
Debug.instance_method(:who_am_i).bind(self).call
Burp.instance_method(:who_am_i).bind(self).call
end
end
You don't (although you could with
Burp.instance_method(:whoAmI?).bind(self).call). Messing like this
with names is not advisable.
Good to know that there is a way to do this. Too bad it is so messy
though. I'm thinking about using two Rails plugins in one model class.
Since rails has a magic after_find callback method I was thinking
about using this in each plugin since the plugins can be used
independently. Since my model must call both of these methods I will
have a third after_find callback method in the model that calls the
other two.
I don't know Rails so I can't comment on this. I just would assume that DHH would have thought of this scenario. At least it sounds reasonable. Or you're abusing these plugins.
Now why doesn't the example below make two who_am_i calls?
One to Burp and one to Debug. It only calls Burp.
Wrong. Look again.
Note also that by
convention a) methods ending in a question mark are reserved for
boolean
queries and b) Ruby uses lowe_case_method_names.
Good to know. I just cut and pasted the example from the the first
edition of Ruby Programming
class EightTrack
include Burp
include Debug
def who_am_i
Debug.instance_method(:who_am_i).bind(self).call
Burp.instance_method(:who_am_i).bind(self).call
end
end
class EightTrack
include Burp
include Throb
include Debug
def who_am_i
wai = [self.class]
( self.class.ancestors - [Object, Kernel] - wai ).each do |a|
( wai << a.instance_method(:who_am_i).bind(self).call ) rescue nil
end
wai
end
end
> Now why doesn't the example below make two who_am_i calls?
> One to Burp and one to Debug. It only calls Burp.
Wrong. Look again.
Victim of a new language. I got it. Thanks!
Peter
···
petermichaux@yahoo.com wrote:
> module Debug
> def who_am_i
> "Debug"
> end
> end
>
> module Burp
> def who_am_i
> "Burp"
> end
> end
>
> class EightTrack
> include Burp
> include Debug
> def who_am_i
> Debug.instance_method(:who_am_i).bind(self).call
> Burp.instance_method(:who_am_i).bind(self).call
> end
> end
>
> et = EightTrack.new
>
> p et.who_am_i