gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/boolean.rb
2016-06-24 09:49:54 +02:00

18 lines
316 B
Ruby

module Gitlab
module Ci
class Config
module Node
##
# Entry that represents a boolean value.
#
class Boolean < Entry
include Validatable
validations do
validates :config, boolean: true
end
end
end
end
end
end