debian-mirror-gitlab/lib/gitlab/ci/pipeline/expression/lexeme/value.rb

16 lines
246 B
Ruby
Raw Normal View History

2018-03-27 19:54:05 +05:30
module Gitlab
module Ci
module Pipeline
module Expression
module Lexeme
class Value < Lexeme::Base
def self.type
:value
end
end
end
end
end
end
end