# File lib/whenever/outputs/cron.rb, line 8
      def initialize(time = nil, task = nil, at = nil, output_redirection = nil)
        @time = time
        @task = task
        @at   = at.is_a?(String) ? (Chronic.parse(at) || 0) : (at || 0)
        @output_redirection = output_redirection
      end