BlankSlate
# File lib/hobo_support/methodcall.rb, line 111 def method_missing(name, *args, &b) @target.send(name, *args, &b) if @target.respond_to?(name) end
# File lib/hobo_support/methodcall.rb, line 107 def initialize(target) @target = target end