6e032d7ba0
* Replace Unspecified with a field so that it's less surprising * Define inspect for Node for easy debugging (and avoid building a very huge string potentially from built-in inspect) * Set default cache key to 'default'
22 lines
362 B
Ruby
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
|