Class: Decorator
- Inherits:
-
Object
- Object
- Decorator
- Defined in:
- lib/decorators.rb
Direct Known Subclasses
Class Attribute Summary collapse
-
.decorators ⇒ Object
Returns the value of attribute decorators.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(klass, method) ⇒ Decorator
constructor
A new instance of Decorator.
Constructor Details
#initialize(klass, method) ⇒ Decorator
Returns a new instance of Decorator.
92 93 94 |
# File 'lib/decorators.rb', line 92 def initialize(klass, method) @method = method end |
Class Attribute Details
.decorators ⇒ Object
Returns the value of attribute decorators.
74 75 76 |
# File 'lib/decorators.rb', line 74 def decorators @decorators end |
Class Method Details
.inherited(klass) ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/decorators.rb', line 76 def self.inherited(klass) name = klass.name.gsub(/^./) {|m| m.downcase} return if name =~ /^[^A-Za-z_]/ || name =~ /[^0-9A-Za-z_]/ # the file and line parameters set the text for error messages # make a new method that is the name of your decorator. # that method accepts random args and a block. # inside, `decorate` is called with those params. MethodDecorators.module_eval <<-ruby_eval, __FILE__, __LINE__ + 1 def #{klass}(*args, &blk) decorate(#{klass}, *args, &blk) end ruby_eval end |