gitlab-org--gitlab-foss/lib/gitlab/ci/config/entry/key.rb
Lin Jen-Shin 6e032d7ba0 Set default cache key for jobs, detail:
* 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'
2017-03-02 22:12:15 +08:00

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