debian-mirror-gitlab/lib/gitlab/ci/config/entry/key.rb
2017-08-17 22:00:37 +05:30

22 lines
362 B
Ruby

module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents a key.
#
class Key < Node
include Validatable
validations do
validates :config, key: true
end
def self.default
'default'
end
end
end
end
end
end