From 6e60a62a252d19daad811a28ea097b18bb44e1da Mon Sep 17 00:00:00 2001 From: "k.wakitani" Date: Wed, 4 Oct 2017 12:21:16 +0900 Subject: [PATCH] The time library is required to call Time.parse Fix: class: NoMethodError, message: undefined method `parse' for Time:Class --- lib/tracker/api/formatter/time.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tracker/api/formatter/time.rb b/lib/tracker/api/formatter/time.rb index 455b7dd..d862e73 100644 --- a/lib/tracker/api/formatter/time.rb +++ b/lib/tracker/api/formatter/time.rb @@ -1,3 +1,5 @@ +require 'time' + module Tracker # :nodoc: module Api # :nodoc: class Formatter