class Endorser::NullObject

Public Class Methods

new(*args) click to toggle source
# File lib/endorser/null_object.rb, line 4
def initialize(*args)
  true
end

Public Instance Methods

method_missing(*args, &block) click to toggle source
# File lib/endorser/null_object.rb, line 8
def method_missing(*args, &block)
  self
end