is there a way to use the spaceship method and the magic "method_missing" in one class? The below example gives me undefined method '<' whenever I try foo1 < foo2 with a definiton like:
class Foo
def initialize(params)
@parent= params[:parent]
end
def <=>(o)
...
end
def method_missing(sym, *args, &block)
@parent.send sym, *args, &block
end
end
Any help appreciated :)
<and>methods to be auto-generated if there is<=>method? – mu is too short Jun 22 '11 at 0:34