thingspeak/app/helpers/application_helper.rb
2014-12-29 14:11:21 -05:00

23 lines
369 B
Ruby

module ApplicationHelper
def is_a_number?(s)
s.to_s.strip.gsub(/,/, '.').match(/\A[+-]?\d+?(\.\d+)?\Z/) == nil ? false : true
end
def parsefloat(number)
return number.to_s.gsub(/,/, '.').to_f
end
# shortcut for capitalize
def T(symbol)
t(symbol).capitalize
end
# shortcut for titleize
def TT(symbol)
t(symbol).titleize
end
end