class Decoru::Decorator
Attributes
object[R]
Public Class Methods
new(object)
click to toggle source
# File lib/decoru/decorator.rb, line 16 def initialize(object) @object = object end
Public Instance Methods
decorated?()
click to toggle source
# File lib/decoru/decorator.rb, line 20 def decorated? true end