Class: Travis::Conditions::V0::Transform

Inherits:
Parslet::Transform
  • Object
show all
Defined in:
lib/travis/conditions/v0/parser.rb

Constant Summary collapse

OP =
{
  '='  => :eq,
  '!=' => :not_eq,
  '=~' => :match,
  '!~' => :not_match,
}