exercism-config 0.122.0 → 0.124.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0badaae27183f7282803b34f5bfb6d895bc42a6a3f764bfde6f4cb65d4774668
4
- data.tar.gz: d40701deb0ffc1e957190f1f91743936c30f57b86a5aa358e759cc5d907aa44c
3
+ metadata.gz: 173f3cead014a86721c7cd9cf97a6f505433c8f2802dd49d99f35b0b815d507d
4
+ data.tar.gz: ccf8fe069f7375b67c32e71d8f19a419a7710c530fc7790a955038357b30e071
5
5
  SHA512:
6
- metadata.gz: 44ec8919fac9f687630db472fc90f1ed04fee755b03ab3fbcfe2f81a0eb7f22f118228e5b1021fd3487e48aa3aa843dd2d02807a2bf243604e27e18ec9d28796
7
- data.tar.gz: 2fbfe06c7de202835378a40a84b430f8613ab53bd9e5af51551b1e7aeb14bde224a61f936cae6b3b041e290d5b34e62be6d7d4b6500c2ed3d0569f86ec9c63ab
6
+ metadata.gz: c7b46f269ea9fe713f02650f6454cc49d26458c405dfc2bd0d3821592467f50639e7eb964a50f411b7f61c1e4afe6e125733a1e053e666bbdced5b8ed726961e
7
+ data.tar.gz: 8bf1fab15e46587bce4a2e75c5edaef45263771192f70064006810dc32047626ffd4b5a66aa036f366499fe06498fc86158aa6e367130b6a6714f80090ab8f5f
@@ -14,7 +14,7 @@ jobs:
14
14
  - uses: actions/checkout@v2
15
15
 
16
16
  - name: Set up Ruby
17
- uses: ruby/setup-ruby@6cecb48364174b0952995175c55f9bf5527e6682
17
+ uses: ruby/setup-ruby@a4effe49ee8ee5b8b5091268c473a4628afb5651
18
18
  with:
19
19
  ruby-version: 3.2.1
20
20
 
@@ -34,7 +34,7 @@ jobs:
34
34
  ###
35
35
  # Setup Ruby - this needs to match the version in the Gemfile
36
36
  - name: Set up Ruby
37
- uses: ruby/setup-ruby@6cecb48364174b0952995175c55f9bf5527e6682
37
+ uses: ruby/setup-ruby@a4effe49ee8ee5b8b5091268c473a4628afb5651
38
38
  with:
39
39
  ruby-version: "3.2.1"
40
40
  bundler-cache: true
data/.husky/pre-commit ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ yarn pretty-quick --staged
5
+ bin/rubocop-quick
data/Gemfile CHANGED
@@ -11,4 +11,4 @@ gem 'rubocop'
11
11
  gem 'rubocop-minitest'
12
12
  gem 'rubocop-performance'
13
13
 
14
- gem 'octokit'
14
+ gem 'octokit'
@@ -47,4 +47,5 @@ Gem::Specification.new do |spec|
47
47
  spec.add_development_dependency 'opensearch-ruby', '2.1.0'
48
48
  spec.add_development_dependency 'redis', '~> 5.1'
49
49
  spec.add_development_dependency 'redis-clustering', '~> 5.1'
50
+ spec.add_development_dependency 'rexml'
50
51
  end
@@ -4,23 +4,16 @@ module Exercism
4
4
 
5
5
  extend Mandate::Memoize
6
6
 
7
- def self.efs_job_path(job_id)
8
- raise ArgumentError, "job_id must be at least 7 characters" if job_id.length < 7
9
-
10
- [job_id[0..2], job_id[3..5], job_id[6..]].join('/')
11
- end
12
-
13
- def self.efs_full_path(job_id)
14
- [Exercism.config.efs_submissions_mount_point, efs_job_path(job_id)].join('/')
15
- end
16
-
17
- def self.create!(job_id, type, submission_uuid, language, exercise,
18
- run_in_background: false,
19
- **data)
7
+ def self.create!(
8
+ job_id, type, submission_uuid, efs_dir, language, exercise,
9
+ run_in_background: false,
10
+ **data
11
+ )
20
12
  data.merge!(
21
13
  id: job_id,
22
- submission_uuid:,
23
14
  type:,
15
+ submission_uuid:,
16
+ efs_dir:,
24
17
  language:,
25
18
  exercise:,
26
19
  created_at: Time.now.utc.to_i
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = '0.122.0'.freeze
2
+ VERSION = '0.124.0'.freeze
3
3
  end
data/settings/local.yml CHANGED
@@ -41,6 +41,7 @@ sidekiq_redis_url: redis://127.0.0.1:6379/2
41
41
  # EFS Config
42
42
  efs_submissions_mount_point: "/opt/exercism/efs/submissions"
43
43
  efs_repositories_mount_point: "/opt/exercism/efs/repos"
44
+ efs_tooling_jobs_mount_point: "/opt/exercism/efs/tooling_jobs"
44
45
  efs_cache_mount_point: "/opt/exercism/efs/cache"
45
46
 
46
47
  # GitHub Config
data/yarn.lock CHANGED
@@ -2,42 +2,11 @@
2
2
  # yarn lockfile v1
3
3
 
4
4
 
5
- "@babel/code-frame@^7.0.0":
6
- version "7.10.4"
7
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
8
- integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
9
- dependencies:
10
- "@babel/highlight" "^7.10.4"
11
-
12
- "@babel/helper-validator-identifier@^7.10.4":
13
- version "7.10.4"
14
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
15
- integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
16
-
17
- "@babel/highlight@^7.10.4":
18
- version "7.10.4"
19
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
20
- integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
21
- dependencies:
22
- "@babel/helper-validator-identifier" "^7.10.4"
23
- chalk "^2.0.0"
24
- js-tokens "^4.0.0"
25
-
26
- "@types/color-name@^1.1.1":
27
- version "1.1.1"
28
- resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
29
- integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
30
-
31
5
  "@types/minimatch@^3.0.3":
32
6
  version "3.0.3"
33
7
  resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
34
8
  integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
35
9
 
36
- "@types/parse-json@^4.0.0":
37
- version "4.0.0"
38
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
39
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
40
-
41
10
  ansi-styles@^3.2.1:
42
11
  version "3.2.1"
43
12
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -45,14 +14,6 @@ ansi-styles@^3.2.1:
45
14
  dependencies:
46
15
  color-convert "^1.9.0"
47
16
 
48
- ansi-styles@^4.1.0:
49
- version "4.2.1"
50
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
51
- integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
52
- dependencies:
53
- "@types/color-name" "^1.1.1"
54
- color-convert "^2.0.1"
55
-
56
17
  array-differ@^3.0.0:
57
18
  version "3.0.0"
58
19
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b"
@@ -81,12 +42,7 @@ brace-expansion@^1.1.7:
81
42
  balanced-match "^1.0.0"
82
43
  concat-map "0.0.1"
83
44
 
84
- callsites@^3.0.0:
85
- version "3.1.0"
86
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
87
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
88
-
89
- chalk@^2.0.0, chalk@^2.4.2:
45
+ chalk@^2.4.2:
90
46
  version "2.4.2"
91
47
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
92
48
  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -95,19 +51,6 @@ chalk@^2.0.0, chalk@^2.4.2:
95
51
  escape-string-regexp "^1.0.5"
96
52
  supports-color "^5.3.0"
97
53
 
98
- chalk@^4.0.0:
99
- version "4.1.0"
100
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
101
- integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
102
- dependencies:
103
- ansi-styles "^4.1.0"
104
- supports-color "^7.1.0"
105
-
106
- ci-info@^2.0.0:
107
- version "2.0.0"
108
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
109
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
110
-
111
54
  color-convert@^1.9.0:
112
55
  version "1.9.3"
113
56
  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
@@ -115,44 +58,16 @@ color-convert@^1.9.0:
115
58
  dependencies:
116
59
  color-name "1.1.3"
117
60
 
118
- color-convert@^2.0.1:
119
- version "2.0.1"
120
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
121
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
122
- dependencies:
123
- color-name "~1.1.4"
124
-
125
61
  color-name@1.1.3:
126
62
  version "1.1.3"
127
63
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
128
64
  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
129
65
 
130
- color-name@~1.1.4:
131
- version "1.1.4"
132
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
133
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
134
-
135
- compare-versions@^3.6.0:
136
- version "3.6.0"
137
- resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
138
- integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
139
-
140
66
  concat-map@0.0.1:
141
67
  version "0.0.1"
142
68
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
143
69
  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
144
70
 
145
- cosmiconfig@^6.0.0:
146
- version "6.0.0"
147
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
148
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
149
- dependencies:
150
- "@types/parse-json" "^4.0.0"
151
- import-fresh "^3.1.0"
152
- parse-json "^5.0.0"
153
- path-type "^4.0.0"
154
- yaml "^1.7.2"
155
-
156
71
  cross-spawn@^7.0.0:
157
72
  version "7.0.3"
158
73
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
@@ -169,13 +84,6 @@ end-of-stream@^1.1.0:
169
84
  dependencies:
170
85
  once "^1.4.0"
171
86
 
172
- error-ex@^1.3.1:
173
- version "1.3.2"
174
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
175
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
176
- dependencies:
177
- is-arrayish "^0.2.1"
178
-
179
87
  escape-string-regexp@^1.0.5:
180
88
  version "1.0.5"
181
89
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
@@ -196,7 +104,7 @@ execa@^2.1.0:
196
104
  signal-exit "^3.0.2"
197
105
  strip-final-newline "^2.0.0"
198
106
 
199
- find-up@^4.0.0, find-up@^4.1.0:
107
+ find-up@^4.1.0:
200
108
  version "4.1.0"
201
109
  resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
202
110
  integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
@@ -204,13 +112,6 @@ find-up@^4.0.0, find-up@^4.1.0:
204
112
  locate-path "^5.0.0"
205
113
  path-exists "^4.0.0"
206
114
 
207
- find-versions@^3.2.0:
208
- version "3.2.0"
209
- resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
210
- integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
211
- dependencies:
212
- semver-regex "^2.0.0"
213
-
214
115
  get-stream@^5.0.0:
215
116
  version "5.1.0"
216
117
  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
@@ -223,45 +124,16 @@ has-flag@^3.0.0:
223
124
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
224
125
  integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
225
126
 
226
- has-flag@^4.0.0:
227
- version "4.0.0"
228
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
229
- integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
230
-
231
- husky@^4.2.5:
232
- version "4.2.5"
233
- resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36"
234
- integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==
235
- dependencies:
236
- chalk "^4.0.0"
237
- ci-info "^2.0.0"
238
- compare-versions "^3.6.0"
239
- cosmiconfig "^6.0.0"
240
- find-versions "^3.2.0"
241
- opencollective-postinstall "^2.0.2"
242
- pkg-dir "^4.2.0"
243
- please-upgrade-node "^3.2.0"
244
- slash "^3.0.0"
245
- which-pm-runs "^1.0.0"
127
+ husky@^8.0.3:
128
+ version "8.0.3"
129
+ resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184"
130
+ integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==
246
131
 
247
132
  ignore@^5.1.4:
248
133
  version "5.1.8"
249
134
  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
250
135
  integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
251
136
 
252
- import-fresh@^3.1.0:
253
- version "3.2.1"
254
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
255
- integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
256
- dependencies:
257
- parent-module "^1.0.0"
258
- resolve-from "^4.0.0"
259
-
260
- is-arrayish@^0.2.1:
261
- version "0.2.1"
262
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
263
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
264
-
265
137
  is-stream@^2.0.0:
266
138
  version "2.0.0"
267
139
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
@@ -272,21 +144,6 @@ isexe@^2.0.0:
272
144
  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
273
145
  integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
274
146
 
275
- js-tokens@^4.0.0:
276
- version "4.0.0"
277
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
278
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
279
-
280
- json-parse-better-errors@^1.0.1:
281
- version "1.0.2"
282
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
283
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
284
-
285
- lines-and-columns@^1.1.6:
286
- version "1.1.6"
287
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
288
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
289
-
290
147
  locate-path@^5.0.0:
291
148
  version "5.0.0"
292
149
  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
@@ -348,11 +205,6 @@ onetime@^5.1.0:
348
205
  dependencies:
349
206
  mimic-fn "^2.1.0"
350
207
 
351
- opencollective-postinstall@^2.0.2:
352
- version "2.0.3"
353
- resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
354
- integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
355
-
356
208
  p-finally@^2.0.0:
357
209
  version "2.0.1"
358
210
  resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
@@ -377,23 +229,6 @@ p-try@^2.0.0:
377
229
  resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
378
230
  integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
379
231
 
380
- parent-module@^1.0.0:
381
- version "1.0.1"
382
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
383
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
384
- dependencies:
385
- callsites "^3.0.0"
386
-
387
- parse-json@^5.0.0:
388
- version "5.0.1"
389
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878"
390
- integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==
391
- dependencies:
392
- "@babel/code-frame" "^7.0.0"
393
- error-ex "^1.3.1"
394
- json-parse-better-errors "^1.0.1"
395
- lines-and-columns "^1.1.6"
396
-
397
232
  path-exists@^4.0.0:
398
233
  version "4.0.0"
399
234
  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
@@ -404,25 +239,6 @@ path-key@^3.0.0, path-key@^3.1.0:
404
239
  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
405
240
  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
406
241
 
407
- path-type@^4.0.0:
408
- version "4.0.0"
409
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
410
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
411
-
412
- pkg-dir@^4.2.0:
413
- version "4.2.0"
414
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
415
- integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
416
- dependencies:
417
- find-up "^4.0.0"
418
-
419
- please-upgrade-node@^3.2.0:
420
- version "3.2.0"
421
- resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
422
- integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
423
- dependencies:
424
- semver-compare "^1.0.0"
425
-
426
242
  prettier@^2.0.5:
427
243
  version "2.0.5"
428
244
  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4"
@@ -448,21 +264,6 @@ pump@^3.0.0:
448
264
  end-of-stream "^1.1.0"
449
265
  once "^1.3.1"
450
266
 
451
- resolve-from@^4.0.0:
452
- version "4.0.0"
453
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
454
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
455
-
456
- semver-compare@^1.0.0:
457
- version "1.0.0"
458
- resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
459
- integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
460
-
461
- semver-regex@^2.0.0:
462
- version "2.0.0"
463
- resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
464
- integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
465
-
466
267
  shebang-command@^2.0.0:
467
268
  version "2.0.0"
468
269
  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
@@ -480,11 +281,6 @@ signal-exit@^3.0.2:
480
281
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
481
282
  integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
482
283
 
483
- slash@^3.0.0:
484
- version "3.0.0"
485
- resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
486
- integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
487
-
488
284
  strip-final-newline@^2.0.0:
489
285
  version "2.0.0"
490
286
  resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
@@ -497,18 +293,6 @@ supports-color@^5.3.0:
497
293
  dependencies:
498
294
  has-flag "^3.0.0"
499
295
 
500
- supports-color@^7.1.0:
501
- version "7.1.0"
502
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
503
- integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
504
- dependencies:
505
- has-flag "^4.0.0"
506
-
507
- which-pm-runs@^1.0.0:
508
- version "1.0.0"
509
- resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
510
- integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
511
-
512
296
  which@^2.0.1:
513
297
  version "2.0.2"
514
298
  resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
@@ -520,8 +304,3 @@ wrappy@1:
520
304
  version "1.0.2"
521
305
  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
522
306
  integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
523
-
524
- yaml@^1.7.2:
525
- version "1.10.0"
526
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
527
- integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exercism-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.122.0
4
+ version: 0.124.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-20 00:00:00.000000000 Z
11
+ date: 2025-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb
@@ -248,6 +248,20 @@ dependencies:
248
248
  - - "~>"
249
249
  - !ruby/object:Gem::Version
250
250
  version: '5.1'
251
+ - !ruby/object:Gem::Dependency
252
+ name: rexml
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
251
265
  description:
252
266
  email:
253
267
  - jez.walker@gmail.com
@@ -264,6 +278,7 @@ files:
264
278
  - ".github/workflows/sync-labels.yml"
265
279
  - ".github/workflows/tests.yml"
266
280
  - ".gitignore"
281
+ - ".husky/pre-commit"
267
282
  - ".rubocop.yml"
268
283
  - ".ruby-version"
269
284
  - CODE_OF_CONDUCT.md