mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
19 lines
312 B
Ruby
19 lines
312 B
Ruby
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Node
|
|
##
|
|
# Entry that represents a Docker image.
|
|
#
|
|
class Image < Entry
|
|
include Validatable
|
|
|
|
validations do
|
|
validates :config, type: String
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|