DEBSOURCES
Skip Quicknav
sources / ruby-clamp / 1.1.1-1.1 / lib / clamp / truthy.rb
123456789
module Clamp TRUTHY_VALUES = %w(1 yes enable on true).freeze def self.truthy?(arg) TRUTHY_VALUES.include?(arg.to_s.downcase) end end