Tagged Questions

4
votes
1answer
69 views

Ruby: why does puts call to_ary?

I'm learning metaprogramming in Ruby and am just trying out defining missing methods via method_missing and define_method. I'm getting some unexpected behaviour and am wondering if anyone can explain ...
4
votes
1answer
97 views

Doesn't Lua have something comparable to Ruby's method_missing?

I seem to recall Lua has something similar to Ruby's method_missing. Or am I remembering incorrectly? Thanks in advance
3
votes
3answers
132 views

Does Ruby have a method_missing equivalent for undefined instance variables?

When I invoke a method that doesn't exist, method_missing will tell me the name of the method. When I attempt to access a variable that hasn't been set, the value is simply nil. I'm attempting to ...
2
votes
3answers
90 views

Does powershell have a method_missing()?

I have been playing around with the dynamic abilities of powershell and I was wondering something Is there is anything in powershell analogous to Ruby's method_missing() where you can set up a 'catch ...
1
vote
1answer
67 views

When might a dispatch table be as good as method_missing in Ruby?

Are there any situations where a dispatch table, implemented as a hash of lambdas, might be as good, if not better, than over-riding Ruby's method_missing? I'm asking because I used this technique ...
0
votes
1answer
703 views

question regarding define_method and method_missing

How can I make this code work? class Meta @array = [:a,:b] def self.method_missing(name, *args, &block) if @array.include? name ...