Class: Representable::Decorator

Inherits:
Object
  • Object
show all
Extended by:
InheritModule
Includes:
Representable
Defined in:
lib/representable/decorator.rb

Defined Under Namespace

Modules: InheritModule

Constant Summary

Constants included from Representable

VERSION

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from InheritModule

inherit_module!

Methods included from Representable

included

Constructor Details

#initialize(represented) ⇒ Decorator

Returns a new instance of Decorator.



48
49
50
# File 'lib/representable/decorator.rb', line 48

def initialize(represented)
  @represented = represented
end

Instance Attribute Details

#representedObject (readonly) Also known as: decorated

Returns the value of attribute represented.



5
6
7
# File 'lib/representable/decorator.rb', line 5

def represented
  @represented
end

Class Method Details

.default_inline_classObject



13
14
15
# File 'lib/representable/decorator.rb', line 13

def self.default_inline_class
  Representable::Decorator
end

.prepare(represented) ⇒ Object

TODO: when moving all class methods into ClassMethods, i get a segfault.



9
10
11
# File 'lib/representable/decorator.rb', line 9

def self.prepare(represented)
  new(represented)
end