15 lines
233 B
Ruby
15 lines
233 B
Ruby
|
module Gitlab
|
||
|
module Ci
|
||
|
class Config
|
||
|
module Node
|
||
|
##
|
||
|
# Entry that represents a concrete CI/CD job.
|
||
|
#
|
||
|
class Job < Entry
|
||
|
include Configurable
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|