class String

Public Instance Methods

to_bool() click to toggle source
# File lib/rails_config/ext/string_ext.rb, line 2
def to_bool
  return true if self == true || self =~ (/(true|t|yes|y|1)$/i)
  return false if self == false || self.empty? || self =~ (/(false|f|no|n|0)$/i)
  raise ArgumentError.new("invalid value for Boolean: \"#{self}\"")
end