# File lib/whenever/outputs/cron/output_redirection.rb, line 10 def to_s return '' unless defined?(@output) case @output when String then redirect_from_string when Hash then redirect_from_hash when NilClass then ">> /dev/null 2>&1" else '' end end