class MPD::Commands::PlaylistInfo

Info about songs in specific playlist. MPD command: “listplaylistinfo <NAME>”

Public Instance Methods

execute(name) click to toggle source

`songs` can be range or integer (to show info about one song) or completely ommited (to show info about all songs)

Calls superclass method MPD::Commands::Abstract#execute
# File lib/mpd/commands/playlist_info.rb, line 13
def execute(name)
  response = super("listplaylistinfo \"#{name}\"")
  Playlist.from_response(response)
end