rubiderella 0.1.2 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/pull_request_template.md +1 -0
- data/.github/workflows/test.yml +3 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +26 -0
- data/Gemfile +2 -5
- data/Gemfile.lock +65 -77
- data/README.md +381 -1
- data/Rakefile +2 -0
- data/bin/console +1 -0
- data/config/idols/asari_nanami.yml +1 -1
- data/config/idols/kiryu_tsukasa.yml +1 -1
- data/config/idols/{saionji_kotoka.yml → saionji_kotoha.yml} +1 -1
- data/config/idols/sunazuka_akira.yml +1 -1
- data/config/idols/tsujino_akari.yml +1 -1
- data/config/idols/yagami_makino.yml +1 -1
- data/lib/rubiderella/errors.rb +2 -0
- data/lib/rubiderella/person/birthday.rb +1 -1
- data/lib/rubiderella/person.rb +3 -0
- data/lib/rubiderella/version.rb +1 -1
- data/rubiderella.gemspec +15 -10
- metadata +81 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b19b7bb485b26df6c75e6f14ae4db50b52d110cf50709ebfbff7c3d2c3c8426f
|
4
|
+
data.tar.gz: d146bca17f8aa1e02b7115fc9473cba943ebfa64af3be3a2812934d01f916d84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0f2ade160bf85f0cc36d69f84c21e56e69577660a02b5b3aa36847195761ee14fbd8f55a0ca4ed7f9f7256889c36d820580df74193965bc4c1bc3664d50a6a7
|
7
|
+
data.tar.gz: ace9397ae920d1b8c471c92cfc9b36b917086e82d1bca898dd338dacffd7dc7c609c676883a2171d493e3118bd4124b6041b25563d38739b423ae818407e4236
|
@@ -0,0 +1 @@
|
|
1
|
+
Fixes #{issue}
|
data/.github/workflows/test.yml
CHANGED
@@ -12,13 +12,15 @@ on:
|
|
12
12
|
branches: [ master ]
|
13
13
|
pull_request:
|
14
14
|
branches: [ master ]
|
15
|
+
schedule:
|
16
|
+
- cron: '0 0 * * *'
|
15
17
|
jobs:
|
16
18
|
test:
|
17
19
|
strategy:
|
18
20
|
fail-fast: false
|
19
21
|
matrix:
|
20
22
|
os: [ubuntu, macos]
|
21
|
-
ruby: [2.
|
23
|
+
ruby: ['2.5', '2.6', '2.7', '3.0']
|
22
24
|
runs-on: ${{ matrix.os }}-latest
|
23
25
|
steps:
|
24
26
|
- uses: actions/checkout@v2
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
# v0.1.6
|
2
|
+
[Full Changelog](https://github.com/hikko624/rubiderella/compare/v0.1.5...v0.1.6)
|
3
|
+
- update idol data
|
4
|
+
- 西園寺琴歌
|
5
|
+
|
6
|
+
# v0.1.5
|
7
|
+
|
8
|
+
[Full Changelog](https://github.com/hikko624/rubiderella/compare/v0.1.4...v0.1.5)
|
9
|
+
- update idol data
|
10
|
+
- 八神マキノ
|
11
|
+
- 浅利七海
|
12
|
+
|
13
|
+
# v0.1.4
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/hikko624/rubiderella/compare/v0.1.3...v0.1.4)
|
16
|
+
- update gem
|
17
|
+
- support ruby 3.0
|
18
|
+
|
19
|
+
# v0.1.3
|
20
|
+
|
21
|
+
[Full Changelog](https://github.com/hikko624/rubiderella/compare/v0.1.2...v0.1.3)
|
22
|
+
- update idol data
|
23
|
+
- 辻野あかり
|
24
|
+
- 砂塚あきら
|
25
|
+
- 桐生つかさ
|
26
|
+
|
1
27
|
# v0.1.2
|
2
28
|
|
3
29
|
[Full Changelog](https://github.com/hikko624/rubiderella/compare/v0.1.1...v0.1.2)
|
data/Gemfile
CHANGED
@@ -1,9 +1,6 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
source 'https://rubygems.org'
|
2
4
|
|
3
5
|
# Specify your gem's dependencies in rubiderella.gemspec
|
4
6
|
gemspec
|
5
|
-
|
6
|
-
gem 'rake', '~> 12.0'
|
7
|
-
gem 'rspec', '~> 3.0'
|
8
|
-
|
9
|
-
gem 'activesupport', '< 6.0.0' if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('2.5.0')
|
data/Gemfile.lock
CHANGED
@@ -1,126 +1,114 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rubiderella (0.1.
|
5
|
-
activesupport
|
4
|
+
rubiderella (0.1.6)
|
5
|
+
activesupport (>= 6.0.0)
|
6
|
+
rake (~> 13.0)
|
7
|
+
rspec (~> 3.0)
|
6
8
|
|
7
9
|
GEM
|
8
10
|
remote: https://rubygems.org/
|
9
11
|
specs:
|
10
|
-
|
11
|
-
activesupport (6.0.3.2)
|
12
|
+
activesupport (6.1.3)
|
12
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>=
|
14
|
-
minitest (
|
15
|
-
tzinfo (~>
|
16
|
-
zeitwerk (~> 2.
|
17
|
-
|
18
|
-
ice_nine (~> 0.11.0)
|
19
|
-
memoizable (~> 0.4.0)
|
20
|
-
ast (2.4.1)
|
14
|
+
i18n (>= 1.6, < 2)
|
15
|
+
minitest (>= 5.1)
|
16
|
+
tzinfo (~> 2.0)
|
17
|
+
zeitwerk (~> 2.3)
|
18
|
+
ast (2.4.2)
|
21
19
|
binding_ninja (0.2.3)
|
22
20
|
byebug (11.1.3)
|
23
|
-
codecov (0.
|
24
|
-
|
25
|
-
json
|
26
|
-
simplecov
|
21
|
+
codecov (0.5.1)
|
22
|
+
simplecov (>= 0.15, < 0.22)
|
27
23
|
coderay (1.1.3)
|
28
|
-
|
29
|
-
concord (0.1.5)
|
30
|
-
adamantium (~> 0.2.0)
|
31
|
-
equalizer (~> 0.0.9)
|
32
|
-
concurrent-ruby (1.1.6)
|
24
|
+
concurrent-ruby (1.1.8)
|
33
25
|
diff-lcs (1.4.4)
|
34
|
-
docile (1.3.
|
35
|
-
|
36
|
-
i18n (1.8.4)
|
26
|
+
docile (1.3.5)
|
27
|
+
i18n (1.8.9)
|
37
28
|
concurrent-ruby (~> 1.0)
|
38
|
-
ice_nine (0.11.2)
|
39
|
-
json (2.3.1)
|
40
|
-
memoizable (0.4.2)
|
41
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
42
29
|
method_source (1.0.0)
|
43
|
-
minitest (5.14.
|
44
|
-
parallel (1.
|
45
|
-
parser (
|
30
|
+
minitest (5.14.4)
|
31
|
+
parallel (1.20.1)
|
32
|
+
parser (3.0.0.0)
|
46
33
|
ast (~> 2.4.1)
|
47
34
|
proc_to_ast (0.1.0)
|
48
35
|
coderay
|
49
36
|
parser
|
50
37
|
unparser
|
51
|
-
procto (0.0.3)
|
52
38
|
pry (0.13.1)
|
53
39
|
coderay (~> 1.1)
|
54
40
|
method_source (~> 1.0)
|
55
41
|
pry-byebug (3.9.0)
|
56
42
|
byebug (~> 11.0)
|
57
43
|
pry (~> 0.13.0)
|
44
|
+
pry-doc (1.1.0)
|
45
|
+
pry (~> 0.11)
|
46
|
+
yard (~> 0.9.11)
|
58
47
|
rainbow (3.0.0)
|
59
|
-
rake (
|
60
|
-
regexp_parser (1.
|
61
|
-
rexml (3.2.
|
62
|
-
rspec (3.
|
63
|
-
rspec-core (~> 3.
|
64
|
-
rspec-expectations (~> 3.
|
65
|
-
rspec-mocks (~> 3.
|
66
|
-
rspec-core (3.
|
67
|
-
rspec-support (~> 3.
|
68
|
-
rspec-expectations (3.
|
48
|
+
rake (13.0.3)
|
49
|
+
regexp_parser (2.1.1)
|
50
|
+
rexml (3.2.5)
|
51
|
+
rspec (3.10.0)
|
52
|
+
rspec-core (~> 3.10.0)
|
53
|
+
rspec-expectations (~> 3.10.0)
|
54
|
+
rspec-mocks (~> 3.10.0)
|
55
|
+
rspec-core (3.10.1)
|
56
|
+
rspec-support (~> 3.10.0)
|
57
|
+
rspec-expectations (3.10.1)
|
69
58
|
diff-lcs (>= 1.2.0, < 2.0)
|
70
|
-
rspec-support (~> 3.
|
71
|
-
rspec-mocks (3.
|
59
|
+
rspec-support (~> 3.10.0)
|
60
|
+
rspec-mocks (3.10.2)
|
72
61
|
diff-lcs (>= 1.2.0, < 2.0)
|
73
|
-
rspec-support (~> 3.
|
62
|
+
rspec-support (~> 3.10.0)
|
74
63
|
rspec-parameterized (0.4.2)
|
75
64
|
binding_ninja (>= 0.2.3)
|
76
65
|
parser
|
77
66
|
proc_to_ast
|
78
67
|
rspec (>= 2.13, < 4)
|
79
68
|
unparser
|
80
|
-
rspec-support (3.
|
81
|
-
rubocop (
|
69
|
+
rspec-support (3.10.2)
|
70
|
+
rubocop (1.11.0)
|
82
71
|
parallel (~> 1.10)
|
83
|
-
parser (>=
|
72
|
+
parser (>= 3.0.0.0)
|
84
73
|
rainbow (>= 2.2.2, < 4.0)
|
85
|
-
regexp_parser (>= 1.
|
74
|
+
regexp_parser (>= 1.8, < 3.0)
|
86
75
|
rexml
|
87
|
-
rubocop-ast (>=
|
76
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
88
77
|
ruby-progressbar (~> 1.7)
|
89
|
-
unicode-display_width (>= 1.4.0, <
|
90
|
-
rubocop-ast (
|
91
|
-
parser (>= 2.7.
|
92
|
-
ruby-progressbar (1.
|
93
|
-
simplecov (0.
|
78
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
79
|
+
rubocop-ast (1.4.1)
|
80
|
+
parser (>= 2.7.1.5)
|
81
|
+
ruby-progressbar (1.11.0)
|
82
|
+
simplecov (0.21.2)
|
94
83
|
docile (~> 1.1)
|
95
84
|
simplecov-html (~> 0.11)
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
adamantium (~> 0.2.0)
|
104
|
-
concord (~> 0.1.5)
|
85
|
+
simplecov_json_formatter (~> 0.1)
|
86
|
+
simplecov-html (0.12.3)
|
87
|
+
simplecov_json_formatter (0.1.2)
|
88
|
+
tzinfo (2.0.4)
|
89
|
+
concurrent-ruby (~> 1.0)
|
90
|
+
unicode-display_width (2.0.0)
|
91
|
+
unparser (0.6.0)
|
105
92
|
diff-lcs (~> 1.3)
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
zeitwerk (2.4.
|
93
|
+
parser (>= 3.0.0)
|
94
|
+
webrick (1.7.0)
|
95
|
+
yard (0.9.26)
|
96
|
+
zeitwerk (2.4.2)
|
110
97
|
|
111
98
|
PLATFORMS
|
112
99
|
ruby
|
113
100
|
|
114
101
|
DEPENDENCIES
|
115
|
-
codecov
|
116
|
-
pry
|
117
|
-
pry-byebug
|
118
|
-
|
119
|
-
rspec (
|
120
|
-
rspec-parameterized
|
102
|
+
codecov (>= 0.5.1)
|
103
|
+
pry (>= 0.10)
|
104
|
+
pry-byebug (>= 3.9)
|
105
|
+
pry-doc (>= 0.6)
|
106
|
+
rspec (>= 3.10)
|
107
|
+
rspec-parameterized (>= 0.4.2)
|
121
108
|
rubiderella!
|
122
|
-
rubocop
|
123
|
-
simplecov
|
109
|
+
rubocop (>= 1.11)
|
110
|
+
simplecov (>= 0.21)
|
111
|
+
webrick (>= 1.5.0)
|
124
112
|
|
125
113
|
BUNDLED WITH
|
126
|
-
2.
|
114
|
+
2.2.3
|
data/README.md
CHANGED
@@ -12,7 +12,7 @@ This gem is inspired by [sue445/rubicure](https://github.com/sue445/rubicure) an
|
|
12
12
|
|
13
13
|
## Requirements
|
14
14
|
|
15
|
-
- ruby >= 2.
|
15
|
+
- ruby >= 2.5
|
16
16
|
|
17
17
|
## Installation
|
18
18
|
|
@@ -27,6 +27,7 @@ This gem is inspired by [sue445/rubicure](https://github.com/sue445/rubicure) an
|
|
27
27
|
### Call CinderellaGirls
|
28
28
|
|
29
29
|
```ruby
|
30
|
+
|
30
31
|
>> CinderellaGirls.idol.all
|
31
32
|
#=> [#<Rubiderella::Idol:0x00007fc2bc10a690
|
32
33
|
@age=9,
|
@@ -71,6 +72,7 @@ This gem is inspired by [sue445/rubicure](https://github.com/sue445/rubicure) an
|
|
71
72
|
ex: 神崎蘭子(Kanzaki Ranko)
|
72
73
|
|
73
74
|
```ruby
|
75
|
+
|
74
76
|
# CinderellaGirls.idol.[IDOL_NAME]
|
75
77
|
>> CinderellaGirls.idol.kanzaki_ranko
|
76
78
|
=> #<Rubiderella::Idol:0x00007feec79bff60
|
@@ -109,6 +111,103 @@ ex: 神崎蘭子(Kanzaki Ranko)
|
|
109
111
|
# CinderellaGirls.idol.[IDOL_NAME].birthday.date
|
110
112
|
>> CinderellaGirls.idol.kanzaki_ranko.birthday.date
|
111
113
|
=> "4月8日"
|
114
|
+
|
115
|
+
```
|
116
|
+
|
117
|
+
### Call Trainer
|
118
|
+
|
119
|
+
```ruby
|
120
|
+
|
121
|
+
>> CinderellaGirls.trainer.all
|
122
|
+
=> [#<Rubiderella::Trainer:0x00007f81069699c8
|
123
|
+
@age=23,
|
124
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969978 @day=10, @month=6>,
|
125
|
+
@blood="B",
|
126
|
+
@bust=84.0,
|
127
|
+
@cv="藤村歩",
|
128
|
+
@favorite=["早朝ランニング"],
|
129
|
+
@from="栃木県",
|
130
|
+
@handed="right",
|
131
|
+
@height=160.0,
|
132
|
+
@hip=85.0,
|
133
|
+
@name=#<Rubiderella::Person::Name:0x00007f81069699a0 @first="明", @first_kana="めい", @last="青木", @last_kana="あおき">,
|
134
|
+
@sign="双子座",
|
135
|
+
@type="passion",
|
136
|
+
@waist=56.0,
|
137
|
+
@weight=45.0>,
|
138
|
+
#<Rubiderella::Trainer:0x00007f8106969928
|
139
|
+
@age=28,
|
140
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f81069698d8 @day=10, @month=12>,
|
141
|
+
@blood="AB",
|
142
|
+
@bust=82.0,
|
143
|
+
@cv="藤村歩",
|
144
|
+
@favorite=["スポーツドリンクの自作"],
|
145
|
+
@from="栃木県",
|
146
|
+
@handed="right",
|
147
|
+
@height=166.0,
|
148
|
+
@hip=83.0,
|
149
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106969900 @first="麗", @first_kana="れい", @last="青木", @last_kana="あおき">,
|
150
|
+
@sign="射手座",
|
151
|
+
@type="passion",
|
152
|
+
@waist=56.0,
|
153
|
+
@weight=45.0>,
|
154
|
+
#<Rubiderella::Trainer:0x00007f8106969888
|
155
|
+
@age=19,
|
156
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969838 @day=10, @month=3>,
|
157
|
+
@blood="B",
|
158
|
+
@bust=77.0,
|
159
|
+
@cv="藤村歩",
|
160
|
+
@favorite=["ジム通い"],
|
161
|
+
@from="栃木県",
|
162
|
+
@handed="right",
|
163
|
+
@height=157.0,
|
164
|
+
@hip=82.0,
|
165
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106969860 @first="慶", @first_kana="けい", @last="青木", @last_kana="あおき">,
|
166
|
+
@sign="魚座",
|
167
|
+
@type="passion",
|
168
|
+
@waist=56.0,
|
169
|
+
@weight=45.0>,
|
170
|
+
#<Rubiderella::Trainer:0x00007f81069697e8
|
171
|
+
@age=26,
|
172
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969798 @day=10, @month=9>,
|
173
|
+
@blood="A",
|
174
|
+
@bust=83.0,
|
175
|
+
@cv="藤村歩",
|
176
|
+
@favorite=["デイトレード"],
|
177
|
+
@from="栃木県",
|
178
|
+
@handed="right",
|
179
|
+
@height=163.0,
|
180
|
+
@hip=84.0,
|
181
|
+
@name=#<Rubiderella::Person::Name:0x00007f81069697c0 @first="聖", @first_kana="せい", @last="青木", @last_kana="あおき">,
|
182
|
+
@sign="乙女座",
|
183
|
+
@type="passion",
|
184
|
+
@waist=56.0,
|
185
|
+
@weight=45.0>]
|
186
|
+
|
187
|
+
```
|
188
|
+
|
189
|
+
### Call Assistant
|
190
|
+
|
191
|
+
```ruby
|
192
|
+
|
193
|
+
>> CinderellaGirls.assistant.all
|
194
|
+
=> [#<Rubiderella::Assistant:0x00007f8106b04f80
|
195
|
+
@age="??",
|
196
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106b04f30 @day=28, @month=11>,
|
197
|
+
@blood="A",
|
198
|
+
@bust=82.0,
|
199
|
+
@cv="佐藤利奈",
|
200
|
+
@favorite=["コスプレ", "パーティ"],
|
201
|
+
@from="東京都",
|
202
|
+
@handed="right",
|
203
|
+
@height=154.0,
|
204
|
+
@hip=84.0,
|
205
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106b04f58 @first="ちひろ", @first_kana="ちひろ", @last="千川", @last_kana="せんかわ">,
|
206
|
+
@sign="射手座",
|
207
|
+
@type=nil,
|
208
|
+
@waist=58.0,
|
209
|
+
@weight="ひ・み・つ">]
|
210
|
+
|
112
211
|
```
|
113
212
|
|
114
213
|
### Rubiderella::Idol#all
|
@@ -193,6 +292,7 @@ ex: 神崎蘭子(Kanzaki Ranko)
|
|
193
292
|
@type="cool",
|
194
293
|
@waist=55.0,
|
195
294
|
@weight=43.0>
|
295
|
+
|
196
296
|
```
|
197
297
|
|
198
298
|
### Rubiderella::Idol::Name#full
|
@@ -204,6 +304,7 @@ ex: 神崎蘭子(Kanzaki Ranko)
|
|
204
304
|
|
205
305
|
>> Rubiderella::Idol.find_by_key(:ninomiya_asuka).name.full
|
206
306
|
=> "二宮飛鳥"
|
307
|
+
|
207
308
|
```
|
208
309
|
|
209
310
|
### Rubiderella::Idol::Name#full_kana
|
@@ -230,6 +331,285 @@ ex: 神崎蘭子(Kanzaki Ranko)
|
|
230
331
|
|
231
332
|
```
|
232
333
|
|
334
|
+
|
335
|
+
### Rubiderella::Trainer#all
|
336
|
+
|
337
|
+
```ruby
|
338
|
+
|
339
|
+
>> Rubiderella::Trainer.all
|
340
|
+
=> [#<Rubiderella::Trainer:0x00007f81069699c8
|
341
|
+
@age=23,
|
342
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969978 @day=10, @month=6>,
|
343
|
+
@blood="B",
|
344
|
+
@bust=84.0,
|
345
|
+
@cv="藤村歩",
|
346
|
+
@favorite=["早朝ランニング"],
|
347
|
+
@from="栃木県",
|
348
|
+
@handed="right",
|
349
|
+
@height=160.0,
|
350
|
+
@hip=85.0,
|
351
|
+
@name=#<Rubiderella::Person::Name:0x00007f81069699a0 @first="明", @first_kana="めい", @last="青木", @last_kana="あおき">,
|
352
|
+
@sign="双子座",
|
353
|
+
@type="passion",
|
354
|
+
@waist=56.0,
|
355
|
+
@weight=45.0>,
|
356
|
+
#<Rubiderella::Trainer:0x00007f8106969928
|
357
|
+
@age=28,
|
358
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f81069698d8 @day=10, @month=12>,
|
359
|
+
@blood="AB",
|
360
|
+
@bust=82.0,
|
361
|
+
@cv="藤村歩",
|
362
|
+
@favorite=["スポーツドリンクの自作"],
|
363
|
+
@from="栃木県",
|
364
|
+
@handed="right",
|
365
|
+
@height=166.0,
|
366
|
+
@hip=83.0,
|
367
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106969900 @first="麗", @first_kana="れい", @last="青木", @last_kana="あおき">,
|
368
|
+
@sign="射手座",
|
369
|
+
@type="passion",
|
370
|
+
@waist=56.0,
|
371
|
+
@weight=45.0>,
|
372
|
+
#<Rubiderella::Trainer:0x00007f8106969888
|
373
|
+
@age=19,
|
374
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969838 @day=10, @month=3>,
|
375
|
+
@blood="B",
|
376
|
+
@bust=77.0,
|
377
|
+
@cv="藤村歩",
|
378
|
+
@favorite=["ジム通い"],
|
379
|
+
@from="栃木県",
|
380
|
+
@handed="right",
|
381
|
+
@height=157.0,
|
382
|
+
@hip=82.0,
|
383
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106969860 @first="慶", @first_kana="けい", @last="青木", @last_kana="あおき">,
|
384
|
+
@sign="魚座",
|
385
|
+
@type="passion",
|
386
|
+
@waist=56.0,
|
387
|
+
@weight=45.0>,
|
388
|
+
#<Rubiderella::Trainer:0x00007f81069697e8
|
389
|
+
@age=26,
|
390
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106969798 @day=10, @month=9>,
|
391
|
+
@blood="A",
|
392
|
+
@bust=83.0,
|
393
|
+
@cv="藤村歩",
|
394
|
+
@favorite=["デイトレード"],
|
395
|
+
@from="栃木県",
|
396
|
+
@handed="right",
|
397
|
+
@height=163.0,
|
398
|
+
@hip=84.0,
|
399
|
+
@name=#<Rubiderella::Person::Name:0x00007f81069697c0 @first="聖", @first_kana="せい", @last="青木", @last_kana="あおき">,
|
400
|
+
@sign="乙女座",
|
401
|
+
@type="passion",
|
402
|
+
@waist=56.0,
|
403
|
+
@weight=45.0>]
|
404
|
+
|
405
|
+
```
|
406
|
+
|
407
|
+
### Rubiderella::Trainer#find\_by\_key
|
408
|
+
|
409
|
+
```ruby
|
410
|
+
|
411
|
+
>> Rubiderella::Trainer.find_by_key(:rookie_trainer)
|
412
|
+
=> #<Rubiderella::Trainer:0x00007f8105247c18
|
413
|
+
@age=19,
|
414
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8105247bc8 @day=10, @month=3>,
|
415
|
+
@blood="B",
|
416
|
+
@bust=77.0,
|
417
|
+
@cv="藤村歩",
|
418
|
+
@favorite=["ジム通い"],
|
419
|
+
@from="栃木県",
|
420
|
+
@handed="right",
|
421
|
+
@height=157.0,
|
422
|
+
@hip=82.0,
|
423
|
+
@name=#<Rubiderella::Person::Name:0x00007f8105247bf0 @first="慶", @first_kana="けい", @last="青木", @last_kana="あおき">,
|
424
|
+
@sign="魚座",
|
425
|
+
@type="passion",
|
426
|
+
@waist=56.0,
|
427
|
+
@weight=45.0>
|
428
|
+
|
429
|
+
>> Rubiderella::Trainer.find_by_key(:trainer)
|
430
|
+
=> #<Rubiderella::Trainer:0x00007f8106aff5a8
|
431
|
+
@age=23,
|
432
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106aff558 @day=10, @month=6>,
|
433
|
+
@blood="B",
|
434
|
+
@bust=84.0,
|
435
|
+
@cv="藤村歩",
|
436
|
+
@favorite=["早朝ランニング"],
|
437
|
+
@from="栃木県",
|
438
|
+
@handed="right",
|
439
|
+
@height=160.0,
|
440
|
+
@hip=85.0,
|
441
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106aff580 @first="明", @first_kana="めい", @last="青木", @last_kana="あおき">,
|
442
|
+
@sign="双子座",
|
443
|
+
@type="passion",
|
444
|
+
@waist=56.0,
|
445
|
+
@weight=45.0>
|
446
|
+
|
447
|
+
>> Rubiderella::Trainer.find_by_key(:veteran_trainer)
|
448
|
+
=> #<Rubiderella::Trainer:0x00007f81051c1078
|
449
|
+
@age=26,
|
450
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f81051c1028 @day=10, @month=9>,
|
451
|
+
@blood="A",
|
452
|
+
@bust=83.0,
|
453
|
+
@cv="藤村歩",
|
454
|
+
@favorite=["デイトレード"],
|
455
|
+
@from="栃木県",
|
456
|
+
@handed="right",
|
457
|
+
@height=163.0,
|
458
|
+
@hip=84.0,
|
459
|
+
@name=#<Rubiderella::Person::Name:0x00007f81051c1050 @first="聖", @first_kana="せい", @last="青木", @last_kana="あおき">,
|
460
|
+
@sign="乙女座",
|
461
|
+
@type="passion",
|
462
|
+
@waist=56.0,
|
463
|
+
@weight=45.0>
|
464
|
+
|
465
|
+
>> Rubiderella::Trainer.find_by_key(:master_trainer)
|
466
|
+
=> #<Rubiderella::Trainer:0x00007f81041b4090
|
467
|
+
@age=28,
|
468
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f81041b4040 @day=10, @month=12>,
|
469
|
+
@blood="AB",
|
470
|
+
@bust=82.0,
|
471
|
+
@cv="藤村歩",
|
472
|
+
@favorite=["スポーツドリンクの自作"],
|
473
|
+
@from="栃木県",
|
474
|
+
@handed="right",
|
475
|
+
@height=166.0,
|
476
|
+
@hip=83.0,
|
477
|
+
@name=#<Rubiderella::Person::Name:0x00007f81041b4068 @first="麗", @first_kana="れい", @last="青木", @last_kana="あおき">,
|
478
|
+
@sign="射手座",
|
479
|
+
@type="passion",
|
480
|
+
@waist=56.0,
|
481
|
+
@weight=45.0>
|
482
|
+
|
483
|
+
```
|
484
|
+
|
485
|
+
### Rubiderella::Trainer::Name#full
|
486
|
+
|
487
|
+
```ruby
|
488
|
+
|
489
|
+
>> Rubiderella::Trainer.find_by_key(:rookie_trainer).name.full
|
490
|
+
=> "青木慶"
|
491
|
+
|
492
|
+
>> Rubiderella::Trainer.find_by_key(:trainer).name.full
|
493
|
+
=> "青木明"
|
494
|
+
|
495
|
+
>> Rubiderella::Trainer.find_by_key(:veteran_trainer).name.full
|
496
|
+
=> "青木聖"
|
497
|
+
|
498
|
+
Rubiderella::Trainer.find_by_key(:master_trainer).name.full
|
499
|
+
=> "青木麗"
|
500
|
+
|
501
|
+
```
|
502
|
+
|
503
|
+
### Rubiderella::Trainer::Name#full_kana
|
504
|
+
|
505
|
+
```ruby
|
506
|
+
|
507
|
+
>> Rubiderella::Trainer.find_by_key(:rookie_trainer).name.full_kana
|
508
|
+
=> "あおきけい"
|
509
|
+
|
510
|
+
>> Rubiderella::Trainer.find_by_key(:trainer).name.full_kana
|
511
|
+
=> "あおきめい"
|
512
|
+
|
513
|
+
>> Rubiderella::Trainer.find_by_key(:veteran_trainer).name.full_kana
|
514
|
+
=> "あおきせい"
|
515
|
+
|
516
|
+
>> Rubiderella::Trainer.find_by_key(:master_trainer).name.full_kana
|
517
|
+
=> "あおきれい"
|
518
|
+
|
519
|
+
```
|
520
|
+
|
521
|
+
### Rubiderella::Trainer::Birthday#date
|
522
|
+
|
523
|
+
```ruby
|
524
|
+
|
525
|
+
>> Rubiderella::Trainer.find_by_key(:rookie_trainer).birthday.date
|
526
|
+
=> "3月10日"
|
527
|
+
|
528
|
+
>> Rubiderella::Trainer.find_by_key(:trainer).birthday.date
|
529
|
+
=> "6月10日"
|
530
|
+
|
531
|
+
>> Rubiderella::Trainer.find_by_key(:veteran_trainer).birthday.date
|
532
|
+
=> "9月10日"
|
533
|
+
|
534
|
+
>> Rubiderella::Trainer.find_by_key(:master_trainer).birthday.date
|
535
|
+
=> "12月10日"
|
536
|
+
|
537
|
+
```
|
538
|
+
|
539
|
+
### Rubiderella::Assistant#all
|
540
|
+
|
541
|
+
```ruby
|
542
|
+
|
543
|
+
>> Rubiderella::Assistant.all
|
544
|
+
=> [#<Rubiderella::Assistant:0x00007f8106b04f80
|
545
|
+
@age="??",
|
546
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106b04f30 @day=28, @month=11>,
|
547
|
+
@blood="A",
|
548
|
+
@bust=82.0,
|
549
|
+
@cv="佐藤利奈",
|
550
|
+
@favorite=["コスプレ", "パーティ"],
|
551
|
+
@from="東京都",
|
552
|
+
@handed="right",
|
553
|
+
@height=154.0,
|
554
|
+
@hip=84.0,
|
555
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106b04f58 @first="ちひろ", @first_kana="ちひろ", @last="千川", @last_kana="せんかわ">,
|
556
|
+
@sign="射手座",
|
557
|
+
@type=nil,
|
558
|
+
@waist=58.0,
|
559
|
+
@weight="ひ・み・つ">]
|
560
|
+
|
561
|
+
```
|
562
|
+
|
563
|
+
### Rubiderella::Assistant#find\_by\_key
|
564
|
+
|
565
|
+
```ruby
|
566
|
+
|
567
|
+
>> Rubiderella::Assistant.find_by_key(:senkawa_chihiro)
|
568
|
+
=> #<Rubiderella::Assistant:0x00007f8106b1db70
|
569
|
+
@age="??",
|
570
|
+
@birthday=#<Rubiderella::Person::Birthday:0x00007f8106b1db20 @day=28, @month=11>,
|
571
|
+
@blood="A",
|
572
|
+
@bust=82.0,
|
573
|
+
@cv="佐藤利奈",
|
574
|
+
@favorite=["コスプレ", "パーティ"],
|
575
|
+
@from="東京都",
|
576
|
+
@handed="right",
|
577
|
+
@height=154.0,
|
578
|
+
@hip=84.0,
|
579
|
+
@name=#<Rubiderella::Person::Name:0x00007f8106b1db48 @first="ちひろ", @first_kana="ちひろ", @last="千川", @last_kana="せんかわ">,
|
580
|
+
@sign="射手座",
|
581
|
+
@type=nil,
|
582
|
+
@waist=58.0,
|
583
|
+
@weight="ひ・み・つ">
|
584
|
+
|
585
|
+
```
|
586
|
+
|
587
|
+
### Rubiderella::Assistant::Name#full
|
588
|
+
|
589
|
+
|
590
|
+
```ruby
|
591
|
+
|
592
|
+
>> Rubiderella::Assistant.find_by_key(:senkawa_chihiro).name.full
|
593
|
+
=> "千川ちひろ"
|
594
|
+
|
595
|
+
```
|
596
|
+
|
597
|
+
### Rubiderella::Assistant::Name#full_kana
|
598
|
+
|
599
|
+
```ruby
|
600
|
+
|
601
|
+
>> Rubiderella::Assistant.find_by_key(:senkawa_chihiro).name.full_kana
|
602
|
+
=> "せんかわちひろ"
|
603
|
+
|
604
|
+
```
|
605
|
+
|
606
|
+
### Rubiderella::Assistant::Birthday#date
|
607
|
+
|
608
|
+
```ruby
|
609
|
+
>> Rubiderella::Assistant.find_by_key(:senkawa_chihiro).birthday.date
|
610
|
+
=> "11月28日"
|
611
|
+
```
|
612
|
+
|
233
613
|
## Contributing
|
234
614
|
|
235
615
|
Bug reports and pull requests are welcome on GitHub at https://github.com/hikko624/rubiderella. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/hikko624/rubiderella/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
data/lib/rubiderella/errors.rb
CHANGED
data/lib/rubiderella/person.rb
CHANGED
data/lib/rubiderella/version.rb
CHANGED
data/rubiderella.gemspec
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative 'lib/rubiderella/version'
|
2
4
|
|
3
5
|
Gem::Specification.new do |spec|
|
@@ -10,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
10
12
|
spec.description = 'Idol m@ster cinderella girls starlight stage'
|
11
13
|
spec.homepage = 'https://github.com/hikko624/rubiderella'
|
12
14
|
spec.license = 'MIT'
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
|
14
16
|
|
15
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
16
18
|
spec.metadata['source_code_uri'] = spec.homepage
|
@@ -24,13 +26,16 @@ Gem::Specification.new do |spec|
|
|
24
26
|
spec.bindir = 'exe'
|
25
27
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
28
|
spec.require_paths = ['lib']
|
27
|
-
spec.add_dependency 'activesupport'
|
28
|
-
|
29
|
-
spec.
|
30
|
-
spec.add_development_dependency '
|
31
|
-
spec.add_development_dependency 'pry
|
32
|
-
spec.add_development_dependency '
|
33
|
-
spec.add_development_dependency '
|
34
|
-
spec.add_development_dependency '
|
35
|
-
spec.add_development_dependency '
|
29
|
+
spec.add_dependency 'activesupport', '>= 6.0.0'
|
30
|
+
spec.add_dependency 'rake', '~> 13.0'
|
31
|
+
spec.add_dependency 'rspec', '~> 3.0'
|
32
|
+
spec.add_development_dependency 'codecov', '>= 0.5.1'
|
33
|
+
spec.add_development_dependency 'pry', '>= 0.10'
|
34
|
+
spec.add_development_dependency 'pry-byebug', '>= 3.9'
|
35
|
+
spec.add_development_dependency 'pry-doc', '>= 0.6'
|
36
|
+
spec.add_development_dependency 'rspec', '>= 3.10'
|
37
|
+
spec.add_development_dependency 'rspec-parameterized', '>= 0.4.2'
|
38
|
+
spec.add_development_dependency 'rubocop', '>= 1.11'
|
39
|
+
spec.add_development_dependency 'simplecov', '>= 0.21'
|
40
|
+
spec.add_development_dependency 'webrick', '>= 1.5.0'
|
36
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubiderella
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hikko624
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,112 +16,168 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 6.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '13.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '13.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
27
55
|
- !ruby/object:Gem::Dependency
|
28
56
|
name: codecov
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
30
58
|
requirements:
|
31
59
|
- - ">="
|
32
60
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
61
|
+
version: 0.5.1
|
34
62
|
type: :development
|
35
63
|
prerelease: false
|
36
64
|
version_requirements: !ruby/object:Gem::Requirement
|
37
65
|
requirements:
|
38
66
|
- - ">="
|
39
67
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
68
|
+
version: 0.5.1
|
41
69
|
- !ruby/object:Gem::Dependency
|
42
70
|
name: pry
|
43
71
|
requirement: !ruby/object:Gem::Requirement
|
44
72
|
requirements:
|
45
73
|
- - ">="
|
46
74
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
75
|
+
version: '0.10'
|
48
76
|
type: :development
|
49
77
|
prerelease: false
|
50
78
|
version_requirements: !ruby/object:Gem::Requirement
|
51
79
|
requirements:
|
52
80
|
- - ">="
|
53
81
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
82
|
+
version: '0.10'
|
55
83
|
- !ruby/object:Gem::Dependency
|
56
84
|
name: pry-byebug
|
57
85
|
requirement: !ruby/object:Gem::Requirement
|
58
86
|
requirements:
|
59
87
|
- - ">="
|
60
88
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
89
|
+
version: '3.9'
|
62
90
|
type: :development
|
63
91
|
prerelease: false
|
64
92
|
version_requirements: !ruby/object:Gem::Requirement
|
65
93
|
requirements:
|
66
94
|
- - ">="
|
67
95
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
96
|
+
version: '3.9'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: pry-doc
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.6'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.6'
|
69
111
|
- !ruby/object:Gem::Dependency
|
70
112
|
name: rspec
|
71
113
|
requirement: !ruby/object:Gem::Requirement
|
72
114
|
requirements:
|
73
115
|
- - ">="
|
74
116
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
117
|
+
version: '3.10'
|
76
118
|
type: :development
|
77
119
|
prerelease: false
|
78
120
|
version_requirements: !ruby/object:Gem::Requirement
|
79
121
|
requirements:
|
80
122
|
- - ">="
|
81
123
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
124
|
+
version: '3.10'
|
83
125
|
- !ruby/object:Gem::Dependency
|
84
126
|
name: rspec-parameterized
|
85
127
|
requirement: !ruby/object:Gem::Requirement
|
86
128
|
requirements:
|
87
129
|
- - ">="
|
88
130
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
131
|
+
version: 0.4.2
|
90
132
|
type: :development
|
91
133
|
prerelease: false
|
92
134
|
version_requirements: !ruby/object:Gem::Requirement
|
93
135
|
requirements:
|
94
136
|
- - ">="
|
95
137
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
138
|
+
version: 0.4.2
|
97
139
|
- !ruby/object:Gem::Dependency
|
98
140
|
name: rubocop
|
99
141
|
requirement: !ruby/object:Gem::Requirement
|
100
142
|
requirements:
|
101
143
|
- - ">="
|
102
144
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
145
|
+
version: '1.11'
|
104
146
|
type: :development
|
105
147
|
prerelease: false
|
106
148
|
version_requirements: !ruby/object:Gem::Requirement
|
107
149
|
requirements:
|
108
150
|
- - ">="
|
109
151
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
152
|
+
version: '1.11'
|
111
153
|
- !ruby/object:Gem::Dependency
|
112
154
|
name: simplecov
|
113
155
|
requirement: !ruby/object:Gem::Requirement
|
114
156
|
requirements:
|
115
157
|
- - ">="
|
116
158
|
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
159
|
+
version: '0.21'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0.21'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: webrick
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 1.5.0
|
118
174
|
type: :development
|
119
175
|
prerelease: false
|
120
176
|
version_requirements: !ruby/object:Gem::Requirement
|
121
177
|
requirements:
|
122
178
|
- - ">="
|
123
179
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
180
|
+
version: 1.5.0
|
125
181
|
description: Idol m@ster cinderella girls starlight stage
|
126
182
|
email:
|
127
183
|
- hikko624@gmail.com
|
@@ -129,6 +185,7 @@ executables: []
|
|
129
185
|
extensions: []
|
130
186
|
extra_rdoc_files: []
|
131
187
|
files:
|
188
|
+
- ".github/pull_request_template.md"
|
132
189
|
- ".github/workflows/coverage.yml"
|
133
190
|
- ".github/workflows/test.yml"
|
134
191
|
- ".gitignore"
|
@@ -278,7 +335,7 @@ files:
|
|
278
335
|
- config/idols/ryuzaki_kaoru.yml
|
279
336
|
- config/idols/saejima_kiyomi.yml
|
280
337
|
- config/idols/sagisawa_fumika.yml
|
281
|
-
- config/idols/
|
338
|
+
- config/idols/saionji_kotoha.yml
|
282
339
|
- config/idols/saito_yoko.yml
|
283
340
|
- config/idols/sajo_yukimi.yml
|
284
341
|
- config/idols/sakakibara_satomi.yml
|
@@ -365,7 +422,7 @@ metadata:
|
|
365
422
|
homepage_uri: https://github.com/hikko624/rubiderella
|
366
423
|
source_code_uri: https://github.com/hikko624/rubiderella
|
367
424
|
changelog_uri: https://github.com/hikko624/rubiderella/blob/master/CHANGELOG.md
|
368
|
-
post_install_message:
|
425
|
+
post_install_message:
|
369
426
|
rdoc_options: []
|
370
427
|
require_paths:
|
371
428
|
- lib
|
@@ -373,15 +430,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
373
430
|
requirements:
|
374
431
|
- - ">="
|
375
432
|
- !ruby/object:Gem::Version
|
376
|
-
version: 2.
|
433
|
+
version: 2.5.0
|
377
434
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
378
435
|
requirements:
|
379
436
|
- - ">="
|
380
437
|
- !ruby/object:Gem::Version
|
381
438
|
version: '0'
|
382
439
|
requirements: []
|
383
|
-
rubygems_version: 3.
|
384
|
-
signing_key:
|
440
|
+
rubygems_version: 3.2.3
|
441
|
+
signing_key:
|
385
442
|
specification_version: 4
|
386
443
|
summary: Idol m@ster cinderella girls starlight stage
|
387
444
|
test_files: []
|