class ObjectTryTest::Decorator

Public Instance Methods

delegator_method() click to toggle source
# File activesupport/test/core_ext/object/try_test.rb, line 103
def delegator_method
  "delegator method"
end
reverse() click to toggle source
# File activesupport/test/core_ext/object/try_test.rb, line 107
def reverse
  "overridden reverse"
end

Private Instance Methods

private_delegator_method() click to toggle source
# File activesupport/test/core_ext/object/try_test.rb, line 113
def private_delegator_method
  "private delegator method"
end