Class: Lyrix

Inherits:
Thor
  • Object
show all
Defined in:
lib/lyrix.rb

Instance Method Summary collapse

Instance Method Details

#load(itunes_library_path) ⇒ Object



100
101
102
103
104
105
# File 'lib/lyrix.rb', line 100

def load(itunes_library_path)
  @library = ITunesLibrary.new(itunes_library_path)
  @library.each do |song_path|
    Song.new song_path
  end
end