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

26 lines
534 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 Variable < Lexeme::Value
PATTERN = /\$(?<name>\w+)/.freeze
def initialize(name)
@name = name
end
def evaluate(variables = {})
2018-05-09 12:01:36 +05:30
variables.with_indifferent_access.fetch(@name, nil)
2018-03-27 19:54:05 +05:30
end
def self.build(string)
new(string.match(PATTERN)[:name])
end
end
end
end
end
end
end