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

22 lines
376 B
Ruby

module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents a stage for a job.
#
class Stage < Node
include Validatable
validations do
validates :config, type: String
end
def self.default
'test'
end
end
end
end
end
end