Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/brm_finance/utility.rb
Instance Method Summary collapse
Instance Method Details
#to_fs ⇒ Object
11 12 13 |
# File 'lib/brm_finance/utility.rb', line 11 def to_fs (!!Float(self) rescue false) ? Float(self) : self end |
#to_p ⇒ Object
15 16 17 |
# File 'lib/brm_finance/utility.rb', line 15 def to_p self.split(',').to_p end |
#underscore ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/brm_finance/utility.rb', line 3 def underscore self.gsub(/::/, '/'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). tr("-", "_"). downcase end |