debian-mirror-gitlab/lib/gitlab/ci/config/entry/variables.rb
2019-03-02 22:35:43 +05:30

28 lines
573 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents environment variables.
#
class Variables < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Validatable
validations do
validates :config, variables: true
end
def self.default(**)
{}
end
def value
Hash[@config.map { |key, value| [key.to_s, value.to_s] }]
end
end
end
end
end
end