module Devise::Models::Rememberable::ClassMethods

def serialize_into_cookie(record)

Create the cookie key using the record id and remember_token
def serialize_into_cookie(record)
  [record.to_key, record.rememberable_value, Time.now.utc.to_f.to_s]
end