debian-mirror-gitlab/lib/gitlab/config/entry/boolean.rb
2019-02-15 15:39:39 +05:30

19 lines
304 B
Ruby

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