Class: Acme::Smileage::Discography::Tracks::UchoutenLove
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2011/026_uchouten_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
-
#initialize ⇒ UchoutenLove
constructor
A new instance of UchoutenLove.
Methods inherited from Base
Constructor Details
#initialize ⇒ UchoutenLove
Returns a new instance of UchoutenLove.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/acme/smileage/discography/tracks/2011/026_uchouten_love.rb', line 12 def initialize super @name = "有頂天LOVE" @name_romaji = "uchouten love" @nicknames = ["有頂天"] @play_time = 257 # 04:17 @arrangers = ["大久保薫"] @hpma = HelloProjectMusicAward.new(2011, 1, 749.5, 305) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-110810-160", :utanet => "http://www.uta-net.com/song/116848/", } @youtube_links = [ { :title => "スマイレージ 『有頂天LOVE』 (Music only)", :link => "https://www.youtube.com/watch?v=eDDfSMxpfoU", }, { :title => "スマイレージ 『有頂天LOVE』 (MV)", :link => "https://www.youtube.com/watch?v=iqKryI3Sl4U", }, { :title => "スマイレージ 『有頂天LOVE』 (Dance Ver.2)", :link => "https://www.youtube.com/watch?v=vdCSPnGu-UM", }, { :title => "スマイレージ 『有頂天LOVE』 (Dance Shot Ver.)", :link => "https://www.youtube.com/watch?v=V0Tb1A2Ee3c", }, { :title => "スマイレージ 『有頂天LOVE』 (4Shot Lip Ver.)", :link => "https://www.youtube.com/watch?v=etCxoeJCS8U", }, { :title => "スマイレージ 『有頂天LOVE』 (校歌斉唱 Ver.)", :link => "https://www.youtube.com/watch?v=csCpvG6ficU", }, { :title => "スマイレージ 『有頂天LOVE』 (Deco Mic Ver.)", :link => "https://www.youtube.com/watch?v=fqA94FMN2zY", }, { :title => "スマイレージ 『有頂天LOVE』 (和田彩花 超Close-up Ver.)", :link => "https://www.youtube.com/watch?v=GONClIuLUw8", }, { :title => "スマイレージ 『有頂天LOVE』 (福田花音 超Close-up Ver.)", :link => "https://www.youtube.com/watch?v=ly-6RS34nqc", }, ] @itunes_links = [ { :title => "有頂天LOVE", :link => "https://itunes.apple.com/jp/album/id449821345", }, { :title => "スマイレージ ベストアルバム完全版①", :link => "https://itunes.apple.com/jp/album/id528168545", }, ] end |