rubimas 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -0
  3. data/.travis.yml +9 -1
  4. data/CHANGELOG.md +10 -1
  5. data/README.md +1 -1
  6. data/bin/touch_idol_files.rb +5 -0
  7. data/config/idols/01_haruka.yml +27 -0
  8. data/config/idols/02_chihaya.yml +26 -0
  9. data/config/idols/03_miki.yml +28 -0
  10. data/config/idols/04_yukiho.yml +26 -0
  11. data/config/idols/05_yayoi.yml +28 -0
  12. data/config/idols/06_makoto.yml +27 -0
  13. data/config/idols/07_iori.yml +27 -0
  14. data/config/idols/08_takane.yml +27 -0
  15. data/config/idols/09_ritsuko.yml +27 -0
  16. data/config/idols/10_azusa.yml +26 -0
  17. data/config/idols/11_ami.yml +27 -0
  18. data/config/idols/12_mami.yml +27 -0
  19. data/config/idols/13_hibiki.yml +28 -0
  20. data/config/idols/14_mirai.yml +26 -0
  21. data/config/idols/15_shizuka.yml +26 -0
  22. data/config/idols/16_tsubasa.yml +26 -0
  23. data/config/idols/17_kotoha.yml +26 -0
  24. data/config/idols/18_erena.yml +26 -0
  25. data/config/idols/19_minako.yml +26 -0
  26. data/config/idols/20_megumi.yml +26 -0
  27. data/config/idols/21_matsuri.yml +27 -0
  28. data/config/idols/22_serika.yml +27 -0
  29. data/config/idols/23_akane.yml +26 -0
  30. data/config/idols/24_anna.yml +26 -0
  31. data/config/idols/25_roko.yml +27 -0
  32. data/config/idols/26_yuriko.yml +26 -0
  33. data/config/idols/27_sayoko.yml +27 -0
  34. data/config/idols/28_arisa.yml +26 -0
  35. data/config/idols/29_umi.yml +26 -0
  36. data/config/idols/30_iku.yml +26 -0
  37. data/config/idols/31_tomoka.yml +26 -0
  38. data/config/idols/32_emily.yml +27 -0
  39. data/config/idols/33_shiho.yml +27 -0
  40. data/config/idols/34_ayumu.yml +26 -0
  41. data/config/idols/35_hinata.yml +26 -0
  42. data/config/idols/36_kana.yml +26 -0
  43. data/config/idols/37_nao.yml +26 -0
  44. data/config/idols/38_chiduru.yml +26 -0
  45. data/config/idols/39_konomi.yml +26 -0
  46. data/config/idols/40_tamaki.yml +26 -0
  47. data/config/idols/41_fuuka.yml +26 -0
  48. data/config/idols/42_miya.yml +27 -0
  49. data/config/idols/43_noriko.yml +26 -0
  50. data/config/idols/44_mizuki.yml +26 -0
  51. data/config/idols/45_karen.yml +26 -0
  52. data/config/idols/46_rio.yml +26 -0
  53. data/config/idols/47_subaru.yml +26 -0
  54. data/config/idols/48_reika.yml +26 -0
  55. data/config/idols/49_momoko.yml +26 -0
  56. data/config/idols/50_juria.yml +22 -0
  57. data/config/units/brand_new_stage/aquarius.yml +5 -0
  58. data/config/units/brand_new_stage/aries.yml +5 -0
  59. data/config/units/brand_new_stage/cancer.yml +5 -0
  60. data/config/units/brand_new_stage/capricorn.yml +5 -0
  61. data/config/units/brand_new_stage/gemini.yml +5 -0
  62. data/config/units/brand_new_stage/leo.yml +5 -0
  63. data/config/units/brand_new_stage/libra.yml +5 -0
  64. data/config/units/brand_new_stage/pisces.yml +5 -0
  65. data/config/units/brand_new_stage/sagittarius.yml +5 -0
  66. data/config/units/brand_new_stage/scorpio.yml +5 -0
  67. data/config/units/brand_new_stage/taurus.yml +5 -0
  68. data/config/units/brand_new_stage/virgo.yml +5 -0
  69. data/config/units/platinum_star_live/arrive.yml +8 -0
  70. data/config/units/platinum_star_live/birth.yml +8 -0
  71. data/config/units/platinum_star_live/burning_girl.yml +8 -0
  72. data/config/units/platinum_star_live/crescendo_blue.yml +8 -0
  73. data/config/units/platinum_star_live/eternal_harmony.yml +8 -0
  74. data/config/units/platinum_star_live/legend_days.yml +8 -0
  75. data/config/units/platinum_star_live/milkyway.yml +8 -0
  76. data/config/units/platinum_star_live/mixnuts.yml +8 -0
  77. data/config/units/platinum_star_live/otome_storm.yml +8 -0
  78. data/config/units/platinum_star_live/ricotta.yml +8 -0
  79. data/lib/rubimas/core_ext/{fixnum → integer}/production.rb +1 -1
  80. data/lib/rubimas/core_ext/integer.rb +1 -0
  81. data/lib/rubimas/idol/name.rb +3 -0
  82. data/lib/rubimas/idol.rb +9 -5
  83. data/lib/rubimas/unit.rb +18 -0
  84. data/lib/rubimas/version.rb +1 -1
  85. data/lib/rubimas.rb +2 -1
  86. data/rubimas.gemspec +4 -4
  87. data/spec/units/misc_spec.rb +67 -0
  88. data/spec/units/rubimas/idol_spec.rb +91 -0
  89. data/spec/units/rubimas_spec.rb +7 -0
  90. metadata +97 -18
  91. data/config/idols.yml +0 -1267
  92. data/lib/rubimas/core_ext/fixnum.rb +0 -1
  93. data/spec/rubimas_spec.rb +0 -110
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubimas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - treby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-27 00:00:00.000000000 Z
11
+ date: 2018-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.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
26
  version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: hashie
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '2.0'
33
+ version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '2.0'
40
+ version: '3.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -128,40 +128,117 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '2.2'
131
+ version: '2'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '2.2'
138
+ version: '2'
139
139
  description: The 765 pro idol's information library. This gem provides names, birthdays,
140
140
  favorites, etc.
141
141
  email:
142
- - treby@atelier-nodoka.net
143
- executables: []
142
+ - me@treby.info
143
+ executables:
144
+ - touch_idol_files.rb
144
145
  extensions: []
145
146
  extra_rdoc_files: []
146
147
  files:
147
148
  - ".gitignore"
148
149
  - ".rspec"
150
+ - ".ruby-version"
149
151
  - ".travis.yml"
150
152
  - CHANGELOG.md
151
153
  - Gemfile
152
154
  - LICENSE.txt
153
155
  - README.md
154
156
  - Rakefile
155
- - config/idols.yml
157
+ - bin/touch_idol_files.rb
158
+ - config/idols/01_haruka.yml
159
+ - config/idols/02_chihaya.yml
160
+ - config/idols/03_miki.yml
161
+ - config/idols/04_yukiho.yml
162
+ - config/idols/05_yayoi.yml
163
+ - config/idols/06_makoto.yml
164
+ - config/idols/07_iori.yml
165
+ - config/idols/08_takane.yml
166
+ - config/idols/09_ritsuko.yml
167
+ - config/idols/10_azusa.yml
168
+ - config/idols/11_ami.yml
169
+ - config/idols/12_mami.yml
170
+ - config/idols/13_hibiki.yml
171
+ - config/idols/14_mirai.yml
172
+ - config/idols/15_shizuka.yml
173
+ - config/idols/16_tsubasa.yml
174
+ - config/idols/17_kotoha.yml
175
+ - config/idols/18_erena.yml
176
+ - config/idols/19_minako.yml
177
+ - config/idols/20_megumi.yml
178
+ - config/idols/21_matsuri.yml
179
+ - config/idols/22_serika.yml
180
+ - config/idols/23_akane.yml
181
+ - config/idols/24_anna.yml
182
+ - config/idols/25_roko.yml
183
+ - config/idols/26_yuriko.yml
184
+ - config/idols/27_sayoko.yml
185
+ - config/idols/28_arisa.yml
186
+ - config/idols/29_umi.yml
187
+ - config/idols/30_iku.yml
188
+ - config/idols/31_tomoka.yml
189
+ - config/idols/32_emily.yml
190
+ - config/idols/33_shiho.yml
191
+ - config/idols/34_ayumu.yml
192
+ - config/idols/35_hinata.yml
193
+ - config/idols/36_kana.yml
194
+ - config/idols/37_nao.yml
195
+ - config/idols/38_chiduru.yml
196
+ - config/idols/39_konomi.yml
197
+ - config/idols/40_tamaki.yml
198
+ - config/idols/41_fuuka.yml
199
+ - config/idols/42_miya.yml
200
+ - config/idols/43_noriko.yml
201
+ - config/idols/44_mizuki.yml
202
+ - config/idols/45_karen.yml
203
+ - config/idols/46_rio.yml
204
+ - config/idols/47_subaru.yml
205
+ - config/idols/48_reika.yml
206
+ - config/idols/49_momoko.yml
207
+ - config/idols/50_juria.yml
208
+ - config/units/brand_new_stage/aquarius.yml
209
+ - config/units/brand_new_stage/aries.yml
210
+ - config/units/brand_new_stage/cancer.yml
211
+ - config/units/brand_new_stage/capricorn.yml
212
+ - config/units/brand_new_stage/gemini.yml
213
+ - config/units/brand_new_stage/leo.yml
214
+ - config/units/brand_new_stage/libra.yml
215
+ - config/units/brand_new_stage/pisces.yml
216
+ - config/units/brand_new_stage/sagittarius.yml
217
+ - config/units/brand_new_stage/scorpio.yml
218
+ - config/units/brand_new_stage/taurus.yml
219
+ - config/units/brand_new_stage/virgo.yml
220
+ - config/units/platinum_star_live/arrive.yml
221
+ - config/units/platinum_star_live/birth.yml
222
+ - config/units/platinum_star_live/burning_girl.yml
223
+ - config/units/platinum_star_live/crescendo_blue.yml
224
+ - config/units/platinum_star_live/eternal_harmony.yml
225
+ - config/units/platinum_star_live/legend_days.yml
226
+ - config/units/platinum_star_live/milkyway.yml
227
+ - config/units/platinum_star_live/mixnuts.yml
228
+ - config/units/platinum_star_live/otome_storm.yml
229
+ - config/units/platinum_star_live/ricotta.yml
156
230
  - lib/rubimas.rb
157
- - lib/rubimas/core_ext/fixnum.rb
158
- - lib/rubimas/core_ext/fixnum/production.rb
231
+ - lib/rubimas/core_ext/integer.rb
232
+ - lib/rubimas/core_ext/integer/production.rb
159
233
  - lib/rubimas/idol.rb
160
234
  - lib/rubimas/idol/name.rb
235
+ - lib/rubimas/unit.rb
161
236
  - lib/rubimas/version.rb
162
237
  - rubimas.gemspec
163
- - spec/rubimas_spec.rb
164
238
  - spec/spec_helper.rb
239
+ - spec/units/misc_spec.rb
240
+ - spec/units/rubimas/idol_spec.rb
241
+ - spec/units/rubimas_spec.rb
165
242
  homepage: https://github.com/imas/rubimas
166
243
  licenses:
167
244
  - MIT
@@ -182,10 +259,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
182
259
  version: '0'
183
260
  requirements: []
184
261
  rubyforge_project:
185
- rubygems_version: 2.5.1
262
+ rubygems_version: 2.7.3
186
263
  signing_key:
187
264
  specification_version: 4
188
265
  summary: The 765 pro idol's information library.
189
266
  test_files:
190
- - spec/rubimas_spec.rb
191
267
  - spec/spec_helper.rb
268
+ - spec/units/misc_spec.rb
269
+ - spec/units/rubimas/idol_spec.rb
270
+ - spec/units/rubimas_spec.rb