Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/string-to-bool.rb
Instance Method Summary collapse
Instance Method Details
#to_bool ⇒ Object
2 3 4 5 6 |
# File 'lib/string-to-bool.rb', line 2 def to_bool return true if self == true || self =~ (/(true|t|yes|y|1)$/i) return false if self == false || self.to_s.strip.empty? || self =~ (/(false|f|no|n|0)$/i) raise ArgumentError.new("invalid value for Boolean: \"#{self}\"") end |