exercism-config 0.37.0 → 0.38.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: 5c3553a925d735e0f255f9e3c7afc498b1b6c33d70d30026b138beed0fbd49d0
4
- data.tar.gz: 9270aee69112a25339a7c9c68450f72418a7ddfdd59667b571151025e3cc89cc
3
+ metadata.gz: d53a8ce7ad6afe4b50df38aecc7af7708bb1a761749ac35ece53a0615da3f82b
4
+ data.tar.gz: 481ca893d9488040b2a7ae2ec842c922aaf8e6eae43e84cbb05933253fabf15c
5
5
  SHA512:
6
- metadata.gz: 5a8016773caff1b76a54e9d71febcda4b9e87b37e309859f02568a1146e54af2c0fc7f9336d351b6e5b24fa7ac82f14a5ead9ba71226583b64565ca67cccf5f3
7
- data.tar.gz: 066ea0f51d9aaf4f3e6b4daf46b743510ebd41a399f299fca560e860f5dd17d39a5ccd31afe2bb6cabfed4f7524dc87d05bb0778f2b55082f3fbd823aaa2f567
6
+ metadata.gz: 19e81f83e28fbe70e72b9f65df2802ca0dfa83e14abc69b62166df590464e6b6c5b66cd39897b35b4073f3a111de68a566b0b90a33581faaa0169f901c6fefb9
7
+ data.tar.gz: c88d61bec133716c6af5a4308dd883b1a1786a85ba3d3f9b1f4bd302b1ed983181f6a450293a6b467d3f110f634d2da96e806eea5dbb128ae5423a6035b3c9aa
@@ -5,8 +5,7 @@ require 'exercism-config'
5
5
  require 'erb'
6
6
  require 'yaml'
7
7
 
8
- env = ExercismConfig::DetermineEnvironment.call
9
- if env == :production
8
+ if Exercism.env.production?
10
9
  puts 'Aborted! This script should not be run in production.'
11
10
  exit
12
11
  end
@@ -71,9 +70,9 @@ settings_file =
71
70
  elsif ENV['EXERCISM_DOCKER']
72
71
  File.expand_path('../settings/docker.yml', __dir__)
73
72
  elsif ENV['EXERCISM_CI']
74
- File.expand_path('../settings/test-ci.yml', __dir__)
73
+ File.expand_path('../settings/ci.yml', __dir__)
75
74
  else
76
- File.expand_path('../settings/development.yml', __dir__)
75
+ File.expand_path('../settings/local.yml', __dir__)
77
76
  end
78
77
 
79
78
  puts "Using settings file: #{settings_file}"
@@ -14,11 +14,11 @@ module ExercismConfig
14
14
  require 'yaml'
15
15
 
16
16
  filename = if ENV["EXERCISM_CI"]
17
- 'test-ci'
17
+ 'ci'
18
18
  elsif ENV["EXERCISM_DOCKER"]
19
- 'test-docker'
19
+ 'docker'
20
20
  else
21
- 'test-local'
21
+ 'local'
22
22
  end
23
23
 
24
24
  settings_file = File.expand_path("../../../settings/#{filename}.yml", __FILE__)
@@ -36,13 +36,6 @@ module ExercismConfig
36
36
  h[item['id']] = item['value']
37
37
  end
38
38
 
39
- # Tweak things for dynamodb when we're running in test mode
40
- if Exercism.env.test?
41
- %w[dynamodb_tooling_jobs_table].each do |key|
42
- data[key] = "#{data[key]}-test"
43
- end
44
- end
45
-
46
39
  aws_settings = GenerateAwsSettings.()
47
40
  Exercism::Config.new(data, aws_settings)
48
41
  rescue Exercism::ConfigError
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = '0.37.0'.freeze
2
+ VERSION = '0.38.0'.freeze
3
3
  end
@@ -1,7 +1,7 @@
1
1
  anycable_redis_url: redis://127.0.0.1:6379/1
2
2
  anycable_rpc_host: 127.0.0.1:50051
3
3
  aws_iterations_bucket: exercism-staging-iterations
4
- dynamodb_tooling_jobs_table: tooling_jobs-test
4
+ dynamodb_tooling_jobs_table: tooling_jobs
5
5
  spi_url: http://127.0.0.1:3020
6
6
  tooling_orchestrator_url: http://127.0.0.1:3021
7
7
 
File without changes
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.37.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker
@@ -157,11 +157,9 @@ files:
157
157
  - lib/exercism_config/setup_s3_client.rb
158
158
  - lib/exercism_config/version.rb
159
159
  - package.json
160
- - settings/development.yml
160
+ - settings/ci.yml
161
161
  - settings/docker.yml
162
- - settings/test-ci.yml
163
- - settings/test-docker.yml
164
- - settings/test-local.yml
162
+ - settings/local.yml
165
163
  - yarn.lock
166
164
  homepage: https://exercism.io
167
165
  licenses: []
@@ -1,9 +0,0 @@
1
- anycable_redis_url: redis://some_anycable_redis_url:1234/9
2
- anycable_rpc_host: 1.2.3.4:9876543
3
- aws_iterations_bucket: some-iterations-bucket
4
- dynamodb_tooling_jobs_table: tooling_jobs-test
5
- spi_url: http://some_url:1234
6
- tooling_orchestrator_url: http://some_orchestrator_url:1234
7
-
8
- mysql_master_endpoint: mysql
9
- mysql_port: 3306
@@ -1,9 +0,0 @@
1
- anycable_redis_url: redis://some_anycable_redis_url:1234/9
2
- anycable_rpc_host: 1.2.3.4:9876543
3
- aws_iterations_bucket: some-iterations-bucket
4
- dynamodb_tooling_jobs_table: tooling_jobs-test
5
- spi_url: http://some_url:1234
6
- tooling_orchestrator_url: http://some_orchestrator_url:1234
7
-
8
- mysql_master_endpoint: localhost
9
- mysql_socket: /tmp/mysql.sock