Class: Acme::Smileage::Discography::Tracks::OtonaNiNarutteMuzukashii

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

#initializeOtonaNiNarutteMuzukashii

Returns a new instance of OtonaNiNarutteMuzukashii.



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/2010/004_otona_ni_narutte_muzukashii.rb', line 12

def initialize
  super
  @name = "オトナになるって難しい!!!"
  @name_romaji = "otona ni narutte muzukashii!!!"
  @nicknames = ["オトムズ", "オトむず"]
  @play_time = 186 # 03:06
  @arrangers = ["板垣祐介"]
  @hpma = HelloProjectMusicAward.new(2010, 29, 77.5, 48)
  @lyric_links = {
    :utamap => "http://www.utamap.com/showkasi.php?surl=dk100527_6",
    :utanet => "http://www.uta-net.com/song/91873/",
  }
  @youtube_links = [
    {
      :title => "スマイレージ 「オトナになるって難しい!!!」 (MV)",
      :link => "https://www.youtube.com/watch?v=LNpIGK_klbA",
    },
    {
      :title => "スマイレージ 「オトナになるって難しい!!!」 (Dance Shot Ver.)",
      :link => "https://www.youtube.com/watch?v=-WaavRLtAqI",
    },
    {
      :title => "スマイレージ 「オトナになるって難しい!!!」 (Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=_gs6j31SGbw",
    },
  ]
  @itunes_links = [
    {
      :title => "オトナになるって難しい!!!",
      :link => "https://itunes.apple.com/jp/album/id366438599",
    },
    {
      :title => "悪ガキッ①",
      :link => "https://itunes.apple.com/jp/album/id403700742",
    },
    {
      :title => "スマイレージ ベストアルバム完全版①",
      :link => "https://itunes.apple.com/jp/album/id528168545",
    },
  ]
end