# File lib/hobo_support/enumerable.rb, line 45 def method_missing(name, *args, &block) @enumerable.send(@method) { |x| x.send(name, *args, &block) } end
# File lib/hobo_support/enumerable.rb, line 40 def initialize(enumerable, method) @enumerable = enumerable @method = method end