Class: Acme::Smileage::Discography::Tracks::ChotoMateKudasai
- Includes:
- Singleton
- Defined in:
- lib/acme/smileage/discography/tracks/2012/039_choto_mate_kudasai.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 ⇒ ChotoMateKudasai
constructor
A new instance of ChotoMateKudasai.
Methods inherited from Base
Constructor Details
#initialize ⇒ ChotoMateKudasai
Returns a new instance of ChotoMateKudasai.
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 |
# File 'lib/acme/smileage/discography/tracks/2012/039_choto_mate_kudasai.rb', line 12 def initialize super @name = "チョトマテクダサイ!" @name_romaji = "choto mate kudasai!" @nicknames = ["チョトマテ"] @play_time = 248 # 04:08 @arrangers = ["平田祥一郎"] @hpma = HelloProjectMusicAward.new(2012, 27, 156.5, 96) @lyric_links = { :utamap => "http://www.utamap.com/showkasi.php?surl=k-120201-012", :utanet => "http://www.uta-net.com/song/125050/", } @youtube_links = [ { :title => "スマイレージ 『チョトマテクダサイ!』 (MV)", :link => "https://www.youtube.com/watch?v=OVwsVKzgR_Y", }, ] @itunes_links = [ { :title => "チョトマテクダサイ!", :link => "https://itunes.apple.com/jp/album/id496149565", }, { :title => "スマイレージ ベストアルバム完全版①", :link => "https://itunes.apple.com/jp/album/id528168545", }, ] end |