class Anyplayer::Noplayer
Public Instance Methods
album()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 38 def album "Money" end
artist()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 34 def artist "The Drums" end
launched?()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 42 def launched? true end
next()
click to toggle source
Calls superclass method
Anyplayer::Player#next
# File lib/anyplayer/players/noplayer.rb, line 16 def next super end
pause()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 9 def pause end
play()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 6 def play end
playing?()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 2 def playing? true end
prev()
click to toggle source
Calls superclass method
Anyplayer::Player#prev
# File lib/anyplayer/players/noplayer.rb, line 12 def prev super end
track()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 30 def track "Money" end
voldown()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 20 def voldown end
volume()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 26 def volume 100 end
volup()
click to toggle source
# File lib/anyplayer/players/noplayer.rb, line 23 def volup end