Class: Object::Not
Instance Method Summary collapse
-
#initialize(subject) ⇒ Not
constructor
A new instance of Not.
- #method_missing(sym, *args, &blk) ⇒ Object
Constructor Details
#initialize(subject) ⇒ Not
Returns a new instance of Not.
9 10 11 |
# File 'lib/sugar-high/not.rb', line 9 def initialize(subject) @subject = subject end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &blk) ⇒ Object
13 14 15 |
# File 'lib/sugar-high/not.rb', line 13 def method_missing(sym, *args, &blk) !@subject.send(sym, *args, &blk) end |