lib/podcast_book_club/episode.rb in podcast-book-club-1.0.1 vs lib/podcast_book_club/episode.rb in podcast-book-club-1.0.2
- old
+ new
@@ -35,11 +35,6 @@
def self.find_by_date(first_date, last_date)
self.all.select { |ep| ep.date >= first_date && ep.date <= last_date }
end
- def output(number, display_description = false)
- puts "#{number} - " + Rainbow("#{self.title}").bg(:black).yellow.bright + " - #{self.date}"
- puts "#{self.description}" if display_description == true
- end
-
end
\ No newline at end of file