thingspeak/app/helpers/application_helper.rb
2014-07-31 15:35:21 -04:00

23 lines
363 B
Ruby

module ApplicationHelper
def is_a_number?(s)
s.to_s.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