debian-mirror-gitlab/lib/gitlab/ci/config/entry/script.rb

19 lines
317 B
Ruby
Raw Normal View History

module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
##
# Entry that represents a script.
#
2017-08-17 22:00:37 +05:30
class Script < Node
2016-08-24 12:49:21 +05:30
include Validatable
2016-08-24 12:49:21 +05:30
validations do
validates :config, array_of_strings: true
end
end
end
end
end
end