debian-mirror-gitlab/lib/gitlab/ci/config/node/global.rb
2016-06-16 23:09:34 +05:30

18 lines
411 B
Ruby

module Gitlab
module Ci
class Config
module Node
##
# This class represents a global entry - root node for entire
# GitLab CI Configuration file.
#
class Global < Entry
include Configurable
allow_node :before_script, Script,
description: 'Script that will be executed before each job.'
end
end
end
end
end