class WrapTest::Proxy

Public Class Methods

new(target) click to toggle source
# File activesupport/test/core_ext/array/wrap_test.rb, line 14
def initialize(target) @target = target end

Public Instance Methods

method_missing(*a) click to toggle source
# File activesupport/test/core_ext/array/wrap_test.rb, line 15
def method_missing(*a) @target.send(*a) end