Files
gitlabhq/lib/gitlab/ci/config/node/global.rb
T

14 lines
207 B
Ruby

module Gitlab
module Ci
class Config
module Node
class Global < Entry
def keys
{ before_script: BeforeScript }
end
end
end
end
end
end