class DownloadTV::Configuration

def prompt_for_ignored

def prompt_for_ignored
  if @content[:ignored]
    puts "Enter a comma-separated list of shows to ignore: (#{@content[:ignored]})"
  else
    puts 'Enter a comma-separated list of shows to ignore: '
  end
  @content[:ignored] = STDIN.gets
                            .chomp
                            .split(',')
                            .map(&:strip)
                            .map(&:downcase)
end