exercism_config 0.20.0 → 0.21.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: 744fa38ddb1c1232e2ce3e758174de17511af61274c1f12a588505d6a4db6823
4
- data.tar.gz: 55aff6a0a094dc360fd5e85deb561240bfb73ec4082449ce115cc479b7dcc07b
3
+ metadata.gz: 0c24cc2300139fb5053af4489866ee9994265766f12f5b91fe676ed055c4d3a7
4
+ data.tar.gz: b657a28b1adccf1b74b1a57005eb324889466a1f92a7ac581094f576e904df99
5
5
  SHA512:
6
- metadata.gz: 9539fc278aefaa2b28250cd06f05abd977f7472dbd5198845a2f1ceb212624ac84ce1a252bff91d0c3faafc816ee09bd3be8f3d6ac24d7c7b84b56e65c31c60e
7
- data.tar.gz: afacdce64725a4b5757ce741135cd19f1b69072c3a9773e4815307f04ae3430e7cdd332a8b23ee880cfcb1271221fcd0bab788b89c4b866753665373cb2a5568
6
+ metadata.gz: c6bd5340aa8d762d42891713b7c0768edee802e884ca19489f41cb72613eb0362c53887a7963425f0e83661028ffe0fdb62dc7040bf559a9c45854abd6665505
7
+ data.tar.gz: 27ae8d52eebdf0196e3a2c3414fbfe3726ad532728c8b81970ab96e7333224333508cf5653b2566d334d6a69949cfbc6d0599b80dd18a06c63374d7907150c08
@@ -20,7 +20,7 @@ module ExercismConfig
20
20
  memoize
21
21
  def config_endpoint
22
22
  return nil unless %i[development test].include?(Exercism.environment)
23
- return "http://127.0.0.1:8000" if ENV["EXERCISM_CI"]
23
+ return "http://127.0.0.1:#{ENV["DYNAMODB_PORT"]}" if ENV["EXERCISM_CI"]
24
24
 
25
25
  host = ENV["EXERCISM_DOCKER"] ? "dynamodb:8000" : "localhost:3039"
26
26
  "http://#{host}"
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = "0.20.0"
2
+ VERSION = "0.21.0"
3
3
  end
@@ -4,4 +4,4 @@ tooling_orchestrator_url: http://127.0.0.1:3021
4
4
  anycable_redis_url: redis://127.0.0.1:6379/1
5
5
  anycable_rpc_host: 127.0.0.1:50051
6
6
  rds_master_endpoint: 127.0.0.1
7
- rds_port: 3306
7
+ rds_port: <%= ENV["MYSQL_PORT"] %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exercism_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker