exercism-config 0.124.0 → 0.126.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: 173f3cead014a86721c7cd9cf97a6f505433c8f2802dd49d99f35b0b815d507d
4
- data.tar.gz: ccf8fe069f7375b67c32e71d8f19a419a7710c530fc7790a955038357b30e071
3
+ metadata.gz: 4063e26b10be6e7ebec2b97b46c6d43444bd95ea84001e5e53eae4cdb0bf5c39
4
+ data.tar.gz: ac63824caf046374e4b629f80c5323c41678abe846413bd8eef318a51e05ff75
5
5
  SHA512:
6
- metadata.gz: c7b46f269ea9fe713f02650f6454cc49d26458c405dfc2bd0d3821592467f50639e7eb964a50f411b7f61c1e4afe6e125733a1e053e666bbdced5b8ed726961e
7
- data.tar.gz: 8bf1fab15e46587bce4a2e75c5edaef45263771192f70064006810dc32047626ffd4b5a66aa036f366499fe06498fc86158aa6e367130b6a6714f80090ab8f5f
6
+ metadata.gz: b5d5ea3afbab8b29c56caeb5f993ce528e648199cd2fde5d5d9ca4c52c38cc1a47500e82573aaa70ead5b395de408b4269f87b83d3dc0a08d06c32a882c1d724
7
+ data.tar.gz: 7c241df5deb95f2abdc3e2fc3cdfbf9a6fab2b05ac6134b98e200bd724751c4b26454ac70fc1d5555ed210902aa5ac898b824f813f67426a4f2a9fa26415969c
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.2.1
1
+ ruby-3.4.4
@@ -63,19 +63,15 @@ module Exercism
63
63
 
64
64
  def locked!
65
65
  redis = Exercism.redis_tooling_client
66
- redis.multi do |transaction|
67
- transaction.lrem(key_for_queued, 1, id)
68
- transaction.rpush(key_for_locked, id)
69
- end
66
+ redis.lrem(key_for_queued, 1, id)
67
+ redis.rpush(key_for_locked, id)
70
68
  end
71
69
 
72
70
  def executed!(status, output)
73
71
  redis = Exercism.redis_tooling_client
74
- redis.multi do |transaction|
75
- transaction.lrem(key_for_queued, 1, id)
76
- transaction.lrem(key_for_locked, 1, id)
77
- transaction.rpush(key_for_executed, id)
78
- end
72
+ redis.lrem(key_for_queued, 1, id)
73
+ redis.lrem(key_for_locked, 1, id)
74
+ redis.rpush(key_for_executed, id)
79
75
 
80
76
  redis.set(
81
77
  "job:#{id}",
@@ -95,10 +91,8 @@ module Exercism
95
91
 
96
92
  def cancelled!
97
93
  redis = Exercism.redis_tooling_client
98
- redis.multi do |transaction|
99
- transaction.lrem(key_for_queued, 1, id)
100
- transaction.rpush(key_for_cancelled, id)
101
- end
94
+ redis.lrem(key_for_queued, 1, id)
95
+ redis.rpush(key_for_cancelled, id)
102
96
  end
103
97
 
104
98
  def ==(other)
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = '0.124.0'.freeze
2
+ VERSION = '0.126.0'.freeze
3
3
  end
data/settings/ci.yml CHANGED
@@ -40,6 +40,8 @@ sidekiq_redis_url: redis://127.0.0.1:6379/2
40
40
  # EFS Config
41
41
  efs_submissions_mount_point: "/tmp/exercism/efs/submissions"
42
42
  efs_repositories_mount_point: "/tmp/exercism/efs/repos"
43
+ efs_tooling_jobs_mount_point: "/tmp/exercism/efs/tooling_jobs"
44
+ efs_cache_mount_point: "/tmp/exercism/efs/cache"
43
45
 
44
46
  # GitHub Config
45
47
  github_organization: fake-exercism
@@ -57,5 +59,5 @@ aws_attachments_region:
57
59
  paypal_api_url: https://api-m.sandbox.paypal.com
58
60
  paypal_url: https://www.sandbox.paypal.com
59
61
 
60
- mongodb_url: 'mongodb://127.0.0.1:27017'
61
- mongodb_database_name: 'exercism'
62
+ mongodb_url: "mongodb://127.0.0.1:27017"
63
+ mongodb_database_name: "exercism"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exercism-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.124.0
4
+ version: 0.126.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-06-22 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-dynamodb
@@ -262,7 +261,6 @@ dependencies:
262
261
  - - ">="
263
262
  - !ruby/object:Gem::Version
264
263
  version: '0'
265
- description:
266
264
  email:
267
265
  - jez.walker@gmail.com
268
266
  executables:
@@ -313,7 +311,6 @@ licenses: []
313
311
  metadata:
314
312
  homepage_uri: https://exercism.io
315
313
  source_code_uri: https://github.com/exercism/config
316
- post_install_message:
317
314
  rdoc_options: []
318
315
  require_paths:
319
316
  - lib
@@ -328,8 +325,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
328
325
  - !ruby/object:Gem::Version
329
326
  version: '0'
330
327
  requirements: []
331
- rubygems_version: 3.5.6
332
- signing_key:
328
+ rubygems_version: 3.6.7
333
329
  specification_version: 4
334
330
  summary: Retrieves stored config for Exercism
335
331
  test_files: []