module Momo::MomoCondition

Public Instance Methods

and(another) click to toggle source
# File lib/momo/momoscope.rb, line 77
def and(another)
        BooleanValue.new("Fn::And", @stack, self, another)
end
equals(another) click to toggle source
# File lib/momo/momoscope.rb, line 73
def equals(another)
        BooleanValue.new("Fn::Equals", @stack, self, another)
end
or(another) click to toggle source
# File lib/momo/momoscope.rb, line 81
def or(another)
        BooleanValue.new("Fn::Or", @stack, self, another)
end