Tagged Questions

0
votes
1answer
115 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 self. …
2
votes
1answer
124 views

How can I intercept a method call in Boo?

Ruby has method_missing , Python has getattr. Does Boo offer something I can use to intercept method calls?
0
votes
2answers
380 views

Method-missing difficulties in C# 4.0: dynamic vs RealProxy

Does anyone know of a way to intercept dynamic method calls (particularly those that are going to raise RuntimeBinderExceptions) with a RealProxy? I was hoping to catch the excepti …
1
vote
1answer
96 views

[Ruby] How to alternatively access accessors as array indices?

I have a class Foo which has several methods like button_0_0, button_0_1, button_0_2, button_1_0, etc. I would like to be able to access these alternatively via the following synt …
4
votes
6answers
418 views

method_missing in “Programming Ruby” over my head

method_missing *obj.method_missing( symbol h , *args i ) → other_obj* Invoked by Ruby when obj is sent a message it cannot handle. symbol is the symbol for the method cal …
2
votes
1answer
262 views

Default Ruby accessor method?

Hi, Is there a default method or class accessor that I can add to a Ruby class that get called if a accessor (Ruby like property) doesn't exit? I can then write some custom code t …