19 lines
411 B
Ruby
19 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
|