Class: Acme::Smileage::Discography::Tracks::KoiNiBooingBoo

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

#initializeKoiNiBooingBoo

Returns a new instance of KoiNiBooingBoo.



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
# File 'lib/acme/smileage/discography/tracks/2011/023_koi_ni_booing_boo.rb', line 12

def initialize
  super
  @name = "恋にBooing ブー!"
  @name_romaji = "koi ni booing boo!"
  @nicknames = ["恋ブー"]
  @play_time = 264 # 04:24
  @arrangers = ["山崎淳"]
  @hpma = HelloProjectMusicAward.new(2011, 79, 14.5, 11)
  @lyric_links = {
    :utamap => "http://www.utamap.com/showkasi.php?surl=k-110427-198",
    :utanet => "http://www.uta-net.com/song/112183/",
  }
  @youtube_links = [
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (MV)",
      :link => "https://www.youtube.com/watch?v=khFjQDiCKE4",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (Dance Shot Ver.)",
      :link => "https://www.youtube.com/watch?v=W-iE21ANDJQ",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (Boo Ver.)",
      :link => "https://www.youtube.com/watch?v=d6iixBrklNY",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (Black Ver.)",
      :link => "https://www.youtube.com/watch?v=PdxQgiU4Kj8",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (Dance & Image Ver.)",
      :link => "https://www.youtube.com/watch?v=nv8wcsF483Q",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (和田彩花 Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=Dd26kQUZ6QA",
    },
    {
      :title => "スマイレージ 『恋にBooing ブー!』 (福田花音 Close-up Ver.)",
      :link => "https://www.youtube.com/watch?v=Wyc7V5o10sA",
    },
  ]
  @itunes_links = [
    {
      :title => "恋にBooing ブー!",
      :link => "https://itunes.apple.com/jp/album/id429866286",
    },
    {
      :title => "スマイレージ ベストアルバム完全版①",
      :link => "https://itunes.apple.com/jp/album/id528168545",
    },
  ]
end