gitlab-org--gitlab-foss/lib/gitlab/ci/config/entry/before_script.rb
2016-06-06 09:05:00 +02:00

13 lines
192 B
Ruby

module Gitlab
module Ci
class Config
module Entry
class BeforeScript < BaseEntry
def leaf?
true
end
end
end
end
end
end