Class: Acme::Smileage::Discography::Tracks::Tachiagirl

Inherits:
Base
  • Object
show all
Includes:
Singleton
Defined in:
lib/acme/smileage/discography/tracks/2011/031_tachiagirl.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

#initializeTachiagirl

Returns a new instance of Tachiagirl.



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
65
66
67
68
# File 'lib/acme/smileage/discography/tracks/2011/031_tachiagirl.rb', line 12

def initialize
  super
  @name = "タチアガール"
  @name_romaji = "tachiagirl"
  @nicknames = []
  @play_time = 273 # 04:33
  @arrangers = ["平田祥一郎"]
  @hpma = HelloProjectMusicAward.new(2011, 17, 169.0, 102)
  @lyric_links = {
    :utamap => "http://www.utamap.com/showkasi.php?surl=k-110928-016",
    :utanet => "http://www.uta-net.com/song/119200/",
  }
  @youtube_links = [
    {
      :title => "スマイレージ 『タチアガール』 (MV)",
      :link => "https://www.youtube.com/watch?v=LN9mG9oqqfc",
    },
    {
      :title => "スマイレージ 『タチアガール』 (Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=yo73sdVef4Q",
    },
    {
      :title => "スマイレージ 『タチアガール』 (DanceShot Ver.)",
      :link => "https://www.youtube.com/watch?v=Uk_0ysc_ed0",
    },
    {
      :title => "スマイレージ 『タチアガール』 (悪ガキッ Ver.)",
      :link => "https://www.youtube.com/watch?v=GlMvlqZ_MFE",
    },
    {
      :title => "スマイレージ 『タチアガール』 (1期メンバー Ver.)",
      :link => "https://www.youtube.com/watch?v=B0Nalrrru68",
    },
    {
      :title => "スマイレージ 『タチアガール』 (和田彩花 Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=x89lMPI3BRY",
    },
    {
      :title => "スマイレージ 『タチアガール』 (福田花音Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=qTgmUBpH8SY",
    },
    {
      :title => "スマイレージ 『タチアガール』 (サブメンVer.)",
      :link => "https://www.youtube.com/watch?v=tITHkHXQWvU",
    },
  ]
  @itunes_links = [
    {
      :title => "タチアガール",
      :link => "https://itunes.apple.com/jp/album/id464722574",
    },
    {
      :title => "スマイレージ ベストアルバム完全版①",
      :link => "https://itunes.apple.com/jp/album/id528168545",
    },
  ]
end