# frozen_string_literal: true module Clamp #:nodoc: TRUTHY_VALUES = %w[1 yes enable on true].freeze def self.truthy?(arg) TRUTHY_VALUES.include?(arg.to_s.downcase) end end