Parent

Files

Object::Not

Public Class Methods

new(subject) click to toggle source
# File lib/sugar-high/not.rb, line 9
def initialize(subject)
  @subject = subject
end

Public Instance Methods

method_missing(sym, *args, &blk) click to toggle source
# File lib/sugar-high/not.rb, line 13
def method_missing(sym, *args, &blk)
  !@subject.send(sym, *args, &blk)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.