Google アナリティクス Cookie パーサーを使用していくつかのビットを解析しようとしていますが、これがあります。
:Time_of_first_visit__c => Time.new(@data.utma_hash.fetch(:initial_visit_at)).to_datetime.to_formatted_s(:long),
:Time_of_previous_visit__c => Time.new(@data.utma_hash.fetch(:previous_visit_at)).to_datetime.to_formatted_s(:long),
:Current_visit_time__c => Time.new(@data.utma_hash.fetch(:current_visit_at)).to_datetime.to_formatted_s(:long),
しかし、次のようにレンダリングされます。
初回訪問時間 1375174064 01/01 00:00
現在の訪問時間 1375174064 1月 01 00:00
前回の訪問時間 1375174064 1月 01 00:00