Class: Acme::Smileage::Discography::Tracks::Shortcut
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2011/020_shortcut.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 ⇒ Shortcut
constructor
A new instance of Shortcut.
Methods inherited from Base
Constructor Details
#initialize ⇒ Shortcut
Returns a new instance of Shortcut.
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 |
# File 'lib/acme/smileage/discography/tracks/2011/020_shortcut.rb', line 12 def initialize super @name = "ショートカット" @name_romaji = "shortcut" @nicknames = [] @play_time = 268 # 04:28 @arrangers = ["平田祥一郎"] @hpma = HelloProjectMusicAward.new(2011, 4, 363.5, 175) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-110209-011", :utanet => "http://www.uta-net.com/song/108524/", } @youtube_links = [ { :title => "スマイレージ 「ショートカット」 (MV)", :link => "https://www.youtube.com/watch?v=er3HL_jwOX8", }, { :title => "スマイレージ 「ショートカット」 (Dance Shot Ver.)", :link => "https://www.youtube.com/watch?v=mlpwT0E0d14", }, { :title => "スマイレージ 「ショートカット」 (Image Scene Ver.)", :link => "https://www.youtube.com/watch?v=Qfa0Xao02vg", }, { :title => "スマイレージ 「ショートカット」 (salon dream Ver.)", :link => "https://www.youtube.com/watch?v=5I_7a_-vZL8", }, { :title => "スマイレージ 「ショートカット」 (Close-up Ver.)", :link => "https://www.youtube.com/watch?v=QlCw8p02nwA", }, { :title => "スマイレージ 「ショートカット」 (和田彩花 Close-up Ver.)", :link => "https://www.youtube.com/watch?v=xnE8Gf1Y-gk", }, { :title => "スマイレージ 「ショートカット」 (福田花音 Close-up Ver.)", :link => "https://www.youtube.com/watch?v=gSCYdN0ZgE8", }, ] @itunes_links = [ { :title => "ショートカット", :link => "https://itunes.apple.com/jp/album/id417218984", }, { :title => "スマイレージ ベストアルバム完全版①", :link => "https://itunes.apple.com/jp/album/id528168545", }, ] end |