Class: Acme::Smileage::Discography::Tracks::Amanojaku
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2009/001_amanojaku.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 ⇒ Amanojaku
constructor
A new instance of Amanojaku.
Methods inherited from Base
Constructor Details
#initialize ⇒ Amanojaku
Returns a new instance of Amanojaku.
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 |
# File 'lib/acme/smileage/discography/tracks/2009/001_amanojaku.rb', line 12 def initialize super @name = "ぁまのじゃく" @name_romaji = "amanojaku" @nicknames = [] @play_time = 289 # 04:49 @arrangers = ["藤澤慶昌"] @hpma = HelloProjectMusicAward.new(2009, 15, 164.5, 93) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-101208-051", :utanet => "http://www.uta-net.com/song/87905/", } @youtube_links = [ { :title => "スマイレージ 「ぁまのじゃく」 (MV) ", :link => "https://www.youtube.com/watch?v=RgbY4xM9O_s", }, { :title => "スマイレージ 「ぁまのじゃく」 (Dance Shot Ver.)", :link => "https://www.youtube.com/watch?v=j7cpA_ezn38", }, { :title => "スマイレージ 「ぁまのじゃく」 (Close-up Ver.)", :link => "https://www.youtube.com/watch?v=nCEkum9AtPo", }, ] @itunes_links = [ { :title => "ぁまのじゃく", :link => "https://itunes.apple.com/jp/album/id348604062", }, { :title => "悪ガキッ①", :link => "https://itunes.apple.com/jp/album/id403700742", }, { :title => "スマイレージ ベストアルバム完全版①", :link => "https://itunes.apple.com/jp/album/id528168545", }, ] end |