debian-mirror-gitlab/lib/gitlab/ci/config/entry/stage.rb
2019-02-15 15:39:39 +05:30

24 lines
457 B
Ruby

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