Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/bank_crawlers/hapoalim/string_patches.rb

Instance Method Summary collapse

Instance Method Details

#dateifyObject



2
3
4
# File 'lib/bank_crawlers/hapoalim/string_patches.rb', line 2

def dateify
  Date.parse("#{self} 2014") rescue Date.today
end

#numerifyObject



6
7
8
# File 'lib/bank_crawlers/hapoalim/string_patches.rb', line 6

def numerify
  self.gsub(/[,.]/, '').to_i/100.0
end