Class: Acme::Smileage::Discography::Tracks::Sukichan
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2009/003_sukichan.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 ⇒ Sukichan
constructor
A new instance of Sukichan.
Methods inherited from Base
Constructor Details
#initialize ⇒ Sukichan
Returns a new instance of Sukichan.
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/003_sukichan.rb', line 12 def initialize super @name = "スキちゃん" @name_romaji = "sukichan" @nicknames = [] @play_time = 206 # 03:26 @arrangers = ["板垣祐介"] @hpma = HelloProjectMusicAward.new(2009, 51, 41.0, 19) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-101208-047", :utanet => "http://www.uta-net.com/song/105946/", } @youtube_links = [ { :title => "スマイレージ 「スキちゃん」 (MV)", :link => "https://www.youtube.com/watch?v=TuTO6edKwLU", }, { :title => "スマイレージ 「スキちゃん」 (Dance Shot Ver.)", :link => "https://www.youtube.com/watch?v=YzotAomnYa0", }, { :title => "スマイレージ 「スキちゃん」 (Close-up Ver.)", :link => "https://www.youtube.com/watch?v=EHAp-v83Ulo", }, ] @itunes_links = [ { :title => "スキちゃん", :link => "https://itunes.apple.com/jp/album/id349411000", }, { :title => "悪ガキッ①", :link => "https://itunes.apple.com/jp/album/id403700742", }, { :title => "スマイレージ ベストアルバム完全版①", :link => "https://itunes.apple.com/jp/album/id528168545", }, ] end |