class Ryakuzu::String

Public Instance Methods

to_bool() click to toggle source
# File lib/ryakuzu/tools/boolean_patch.rb, line 3
def to_bool
  return true if self == true || self =~ (/^(true|t|yes|y|1)$/i)
  return false if self == false || self.blank? || self =~ (/^(false|f|no|n|0)$/i)
  fail ArgumentError.new("invalid value for Boolean: \"#{self}\"")
end