simple-decorator 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. data/lib/simple_decorator.rb +2 -2
  2. metadata +1 -1
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # Allows you to give true decorator behavior to your classes.
5
5
  class SimpleDecorator < BasicObject
6
- #undef_method :==
6
+ undef_method :==
7
7
 
8
8
  # Stores the decorated object
9
9
  def initialize(component)
@@ -14,7 +14,7 @@ class SimpleDecorator < BasicObject
14
14
  def decorated
15
15
  @component
16
16
  end
17
- alias :source :decorated
17
+ alias :source :decorate
18
18
 
19
19
  def send(s, *a); __send__(s, *a) end
20
20
  def method_missing(n, *a, &b); @component.send(n, *a, &b) 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.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: