Calling a method defined anywhere in the inheritance chain, even if overridden
ActiveSupport's objects sometimes masquerade as built-in objects.
require 'active_support'
days = 5.days
days.class #=> Fixnum
days.is_a?(Fixnum) #=> true
Fixnum === days #=> false (huh? what are you really?)
Object.instance_method(:class).bind(days).call #=> ActiveSupport::Duration (aha!)
ActiveSupport::Duration === days #=> true
The above, of course, relies on the fact that active_support doesn't redefine Object#instance_method, in which case we'd really be up a creek. Then again, we could always save the return value of Object.instance_method(:class) before any 3rd party library is loaded.
Object.instance_method(...) returns an UnboundMethod which you can then bind to an instance of that class. In this case, you can bind it to any instance of Object (subclasses included).
If an object's class includes modules, you can also use the UnboundMethod from those modules.
module Mod
def var_add(more); @var+more; end
end
class Cla
include Mod
def initialize(var); @var=var; end
# override
def var_add(more); @var+more+more; end
end
cla = Cla.new('abcdef')
cla.var_add('ghi') #=> "abcdefghighi"
Mod.instance_method(:var_add).bind(cla).call('ghi') #=> "abcdefghi"
This even works for singleton methods that override an instance method of the class the object belongs to.
class Foo
def mymethod; 'original'; end
end
foo = Foo.new
foo.mymethod #=> 'original'
def foo.mymethod; 'singleton'; end
foo.mymethod #=> 'singleton'
Foo.instance_method(:mymethod).bind(foo).call #=> 'original'
# You can also call #instance method on singleton classes:
class << foo; self; end.instance_method(:mymethod).bind(foo).call #=> 'singleton'