simple-decorator 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/simple_decorator.rb +7 -6
  2. metadata +1 -1
@@ -1,20 +1,21 @@
1
- # SimpleDecorator allows you to give true decorator behavior to your classes.
1
+ # Author:: Gabriel Dehan (gabriel-dehan)
2
+ # License:: WTFPL (http://sam.zoy.org/wtfpl/COPYING)
2
3
  #
3
- # Author: Gabriel Dehan (gabriel-dehan)
4
- #
5
- # License: WTFPL (http://sam.zoy.org/wtfpl/COPYING)
4
+ # Allows you to give true decorator behavior to your classes.
6
5
  class SimpleDecorator < BasicObject
7
- undef_method :==
6
+ #undef_method :==
8
7
 
8
+ # Stores the decorated object
9
9
  def initialize(component)
10
10
  @component = component
11
11
  end
12
12
 
13
+ # Returns the component
13
14
  def decorated
14
15
  @component
15
16
  end
16
17
  alias :source :decorated
17
18
 
18
- def method_missing(n, *a, &b); @component.send(n, *a, &b) end
19
19
  def send(s, *a); __send__(s, *a) end
20
+ def method_missing(n, *a, &b); @component.send(n, *a, &b) end
20
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-decorator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: