Class: Acme::Smileage::Discography::Tracks::MysteryNight
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2014/064_mystery_night.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 ⇒ MysteryNight
constructor
A new instance of MysteryNight.
Methods inherited from Base
Constructor Details
#initialize ⇒ MysteryNight
Returns a new instance of MysteryNight.
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 |
# File 'lib/acme/smileage/discography/tracks/2014/064_mystery_night.rb', line 12 def initialize super @name = "ミステリーナイト!" @name_romaji = "mystery night!" @nicknames = ["ミスナイ"] @play_time = 264 # 4:24 @arrangers = ["平田祥一郎"] @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-140430-015", :utanet => "http://www.uta-net.com/song/163165/", } @youtube_links = [ { :title => "スマイレージ 『ミステリーナイト!』 (S/mileage[A Mistery Night!]) (Promotion edit)", :link => "https://www.youtube.com/watch?v=gh6-f1EV_14", }, { :title => "スマイレージ 『ミステリーナイト!』 (S/mileage[A Mistery Night!]) (Dance Shot Ver.)", :link => "https://www.youtube.com/watch?v=bpykoK1eWsg", }, ] @itunes_links = [ { :title => "ミステリーナイト!/エイティーン エモーション", :link => "https://itunes.apple.com/jp/album/id859045562", }, ] end |