Method: Enumerable::Proxy#method_missing
- Defined in:
- lib/rext/enumerable/helpers.rb
#method_missing(meth, *args, &block) ⇒ Object
28 29 30 |
# File 'lib/rext/enumerable/helpers.rb', line 28 def method_missing meth, *args, &block @object.__send__(@method) { |o| o.__send__(meth, *args, &block) } end |