Class: Acme::Smileage::Discography::Tracks::ChokottoLove
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2010/013_chokotto_love.rb
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
#arrangers, #composers, #hpma, #itunes_links, #lyric_links, #lyricists, #name, #name_romaji, #nicknames, #play_time, #youtube_links
Instance Method Summary collapse
- #cover? ⇒ Boolean
-
#initialize ⇒ ChokottoLove
constructor
A new instance of ChokottoLove.
Methods inherited from Base
Constructor Details
#initialize ⇒ ChokottoLove
Returns a new instance of ChokottoLove.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/acme/smileage/discography/tracks/2010/013_chokotto_love.rb', line 12 def initialize super @name = "ちょこっとLOVE" @name_romaji = "chokotto love" @nicknames = ["ちょこラブ", "ちょこLOVE"] @play_time = 243 # 04:03 @arrangers = ["鈴木俊介"] @hpma = HelloProjectMusicAward.new(2010, 121, 4.0, 3) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-100929-011", :utanet => "http://www.uta-net.com/song/102018/", } @youtube_links = [] @itunes_links = [ { :title => "同じ時給で働く友達の美人ママ", :link => "https://itunes.apple.com/jp/album/id390851470", }, ] end |
Instance Method Details
#cover? ⇒ Boolean
33 |
# File 'lib/acme/smileage/discography/tracks/2010/013_chokotto_love.rb', line 33 def cover?; true; end |