debian-mirror-gitlab/lib/gitlab/ci/config/entry/key.rb

23 lines
362 B
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
2016-08-24 12:49:21 +05:30
##
# Entry that represents a key.
#
2017-08-17 22:00:37 +05:30
class Key < Node
2016-08-24 12:49:21 +05:30
include Validatable
validations do
validates :config, key: true
end
2017-08-17 22:00:37 +05:30
def self.default
'default'
end
2016-08-24 12:49:21 +05:30
end
end
end
end
end