I'm wondering what's the purpose of lines 118-120 in checks.rb. # context.class.instance_methods(false).each do |method| # define_method(method) { |*args| context.send(method, *args) } # end
I tried removing them to see what spec would fail, but there was none. Is it an undocumented feature? Or an idea that was implemented but later abandoned? Lacton