class Freakonomics::Reporter

Public Class Methods

all() click to toggle source
# File lib/freakonomics/reporter.rb, line 10
def self.all
  STDOUT.puts "Downloading ALL Episodes..."
end
download(file_name) click to toggle source
# File lib/freakonomics/reporter.rb, line 2
def self.download file_name
  STDOUT.puts "Downloading Episode: \"#{file_name}\"..."
end
downloaded(file_name) click to toggle source
# File lib/freakonomics/reporter.rb, line 6
def self.downloaded file_name
  STDOUT.puts "Episode: \"#{file_name}\" downloaded."
end
not_found() click to toggle source
# File lib/freakonomics/reporter.rb, line 14
def self.not_found
  STDOUT.puts "Episode not found."
end