class Acme::Smileage::Discography::Tracks::Base
Constants
- DEFAULT_USER_AGENT
Attributes
arrangers[R]
composers[R]
hpma[R]
itunes_links[R]
lyric_links[R]
lyricists[R]
name[R]
name_romaji[R]
nicknames[R]
play_time[R]
youtube_links[R]
Public Class Methods
new()
click to toggle source
# File lib/acme/smileage/discography/tracks/base.rb, line 22 def initialize @lyricists = ["つんく♂"] @composers = ["つんく♂"] end
Public Instance Methods
cover?()
click to toggle source
# File lib/acme/smileage/discography/tracks/base.rb, line 27 def cover?; false; end
get_lyrics(site=nil)
click to toggle source
# File lib/acme/smileage/discography/tracks/base.rb, line 30 def get_lyrics(site=nil) return nil unless self.lyric_links Acme::Smileage::Discography::LyricsDownloader.new.get(self.lyric_links, site) end
remix?()
click to toggle source
# File lib/acme/smileage/discography/tracks/base.rb, line 28 def remix?; false; end