I'm working on an app that will track the worked time from users, and then, generate graphics from this data...
Having in mind that they can start any task today and done it tomorrow, I can't save an Date...
By now, I'm saving an integer field like hours and a integer minute...
Is there a way (some gem, maybe) to help me dealing with this kind of problem?
Or any other approach?
Thanks
My class Atendimento that contains all necessary data
class Atendimento < ActiveRecord::Base
attr_accessible :horas, :minutos, :empresa, :tipo_atendimento, :observacao, :empresa_id, :tipoatendimento_id
belongs_to :empresa
belongs_to :tipo_atendimento, :foreign_key => 'tipoatendimento_id'
belongs_to :usuario
validates :horas, :minutos, presence: true
end