Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created September 6, 2013 01:29
Show Gist options
  • Save barnes7td/6458407 to your computer and use it in GitHub Desktop.
Save barnes7td/6458407 to your computer and use it in GitHub Desktop.
Playlist
class Playlist
attr_reader :song_list, :history
def create_playlist(list)
@song_list = list
@song_index = 0
@history = [current_song]
end
def next
@song_index += 1
@song_index = 0 if end_of_list?
@history << current_song
end
def current_song
@song_list[@song_index]
end
private
def end_of_list?
@song_index == @song_list.length
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment