class RMD::NCT::Playlist

Public Instance Methods

fetch() click to toggle source
# File lib/rmd/nct/playlist.rb, line 7
def fetch
  calculate_progress do |link|
    song = RMD::NCT::Song.new(link)
    song.fetch
    if song.success?
      @songs << song.data_link
    else
      @errors << song.errors
    end
  end
end

Private Instance Methods

song_css() click to toggle source
# File lib/rmd/nct/playlist.rb, line 21
def song_css
  '.item_content .name_song'
end