12 13 14 15 16 17 18 19
# File 'lib/musk/track_printer.rb', line 12 def print! case @format.to_s.to_sym when :csv then Musk::Formatter::CSV.print(@tracks) when :pretty then Musk::Formatter::Pretty.print(@tracks) else raise "Unknown format '#{@format}'" end end