Method: AppleMusicLibrary::Century.report

Defined in:
lib/apple_music_library/century.rb

.reportObject



6
7
8
9
10
# File 'lib/apple_music_library/century.rb', line 6

def self.report
  self.all.sort_by{|c| c.name}.each do |century|
    puts "#{century.name} - #{century.track_count} tracks on #{century.album_count} albums"
  end
end