Class: Acme::Smileage::Discography::Tracks::Samuine

Inherits:
Base
  • Object
show all
Includes:
Singleton
Defined in:
lib/acme/smileage/discography/tracks/2012/049_samuine.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_USER_AGENT

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

Methods inherited from Base

#cover?, #get_lyrics, #remix?

Constructor Details

#initializeSamuine

Returns a new instance of Samuine.



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
# File 'lib/acme/smileage/discography/tracks/2012/049_samuine.rb', line 12

def initialize
  super
  @name = "寒いね。"
  @name_romaji = "samuine."
  @nicknames = []
  @play_time = 283 # 04:43
  @arrangers = ["大久保薫"]
  @hpma = HelloProjectMusicAward.new(2012, 16, 328.5, 202)
  @lyric_links = {
    :utamap => "http://www.utamap.com/showkasi.php?surl=k-121128-150",
    :utanet => "http://www.uta-net.com/song/138712/",
  }
  @youtube_links = [
    {
      :title => "スマイレージ 「寒いね。」 (MV)",
      :link => "https://www.youtube.com/watch?v=ZxFhVH2tNzc",
    },
    {
      :title => "スマイレージ 「寒いね。」 (Live Ver.)",
      :link => "https://www.youtube.com/watch?v=VDFAXMSSt2o",
    },
  ]
  @itunes_links = [
    {
      :title => "寒いね。",
      :link => "https://itunes.apple.com/jp/album/id576697867",
    },
    {
      :title => "②スマイルセンセーション",
      :link => "https://itunes.apple.com/jp/album/id643254704",
    },
  ]
end