Created
September 6, 2013 01:29
-
-
Save barnes7td/6458407 to your computer and use it in GitHub Desktop.
Playlist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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