class Smartdown::Model::Predicate::Otherwise

Public Instance Methods

==(o) click to toggle source
# File lib/smartdown/model/predicate/otherwise.rb, line 9
def ==(o)
  o.class == self.class
end
evaluate(state) click to toggle source
# File lib/smartdown/model/predicate/otherwise.rb, line 5
def evaluate(state)
    true
end
humanize() click to toggle source
# File lib/smartdown/model/predicate/otherwise.rb, line 13
def humanize
  "otherwise"
end