Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/dm-forms/core_ext.rb

Instance Method Summary collapse

Instance Method Details

#to_boolObject

String to bool.



7
8
9
# File 'lib/dm-forms/core_ext.rb', line 7

def to_bool
  !empty? and self != '0' and self != 'false' and self != 'nil'
end