Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/clearbooks/core_ext/string.rb

Constant Summary collapse

TRUE_VALUES =
%W{1 t true on y yes}.freeze

Instance Method Summary collapse

Instance Method Details

#to_bObject



14
15
16
# File 'lib/clearbooks/core_ext/string.rb', line 14

def to_b
  TRUE_VALUES.include?(self.to_s.strip.downcase)
end