exercism-config 0.38.0 → 0.41.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: d53a8ce7ad6afe4b50df38aecc7af7708bb1a761749ac35ece53a0615da3f82b
4
- data.tar.gz: 481ca893d9488040b2a7ae2ec842c922aaf8e6eae43e84cbb05933253fabf15c
3
+ metadata.gz: 01f964544c9ddec6effc25a1b417ed9d2f3d0c5dcb98ebae0b6cd9c4b62e3963
4
+ data.tar.gz: 61a0591b8b221bed122b2dc12cfceff707aaf7005f56335bab86e1e31633210b
5
5
  SHA512:
6
- metadata.gz: 19e81f83e28fbe70e72b9f65df2802ca0dfa83e14abc69b62166df590464e6b6c5b66cd39897b35b4073f3a111de68a566b0b90a33581faaa0169f901c6fefb9
7
- data.tar.gz: c88d61bec133716c6af5a4308dd883b1a1786a85ba3d3f9b1f4bd302b1ed983181f6a450293a6b467d3f110f634d2da96e806eea5dbb128ae5423a6035b3c9aa
6
+ metadata.gz: dd48bdaf9a8b8a86a3934e886442b6c23fd5285a2f0a578d0b6209ac1ac5b88ad58d2e34401459c84dbb7f0d57a99b5ef411199016f43833744811656ae6f188
7
+ data.tar.gz: d0ac7eee145662d64d964f6b6dfd19d85aa780d5d387d9fb5c53adbe1c0963556389d4dfedb985c1617e81754d8ea5dc9e9befffecfe069826767d79d510e48f
@@ -73,6 +73,7 @@ jobs:
73
73
  ###
74
74
  # Publish the coverage to CodeClimate
75
75
  - name: Publish code coverage
76
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
76
77
  env:
77
78
  GIT_BRANCH: ${GITHUB_REF/refs\/heads\//}
78
79
  CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
@@ -56,6 +56,10 @@ Style/Documentation:
56
56
  Style/DocumentationMethod:
57
57
  Enabled: false
58
58
 
59
+ Style/GuardClause:
60
+ Exclude:
61
+ - lib/exercism_config/environment.rb
62
+
59
63
  Style/IfUnlessModifier:
60
64
  Exclude:
61
65
  - "lib/exercism_config/setup_dynamodb_client.rb"
data/Rakefile CHANGED
@@ -8,3 +8,7 @@ Rake::TestTask.new(:test) do |t|
8
8
  end
9
9
 
10
10
  task default: :test
11
+
12
+ task :lint do
13
+ sh 'bundle exec rubocop --except Metrics -a'
14
+ end
@@ -16,12 +16,17 @@ Exercism.config.dynamodb_client = ExercismConfig::SetupDynamoDBClient.()
16
16
  # We don't need this running for CI atm as none of our
17
17
  # tests actually hit s3. Although we might choose to change this
18
18
  unless ENV["EXERCISM_CI"] || ENV["EXERCISM_SKIP_S3"]
19
- begin
20
- ExercismConfig::SetupS3Client.().create_bucket(bucket: Exercism.config.aws_iterations_bucket)
21
- rescue Seahorse::Client::NetworkingError => e
22
- puts "local S3 not up yet..."
23
- sleep 2 # slighty retry delaty
24
- retry
19
+ [
20
+ Exercism.config.aws_iterations_bucket,
21
+ Exercism.config.aws_tooling_jobs_bucket,
22
+ ].each do |bucket|
23
+ begin
24
+ ExercismConfig::SetupS3Client.().create_bucket(bucket: bucket)
25
+ rescue Seahorse::Client::NetworkingError => e
26
+ puts "local S3 not up yet..."
27
+ sleep 2 # slighty retry delaty
28
+ retry
29
+ end
25
30
  end
26
31
  end
27
32
 
@@ -1,6 +1,6 @@
1
1
  module ExercismConfig
2
2
  class Environment
3
- ALLOWED_ENVS = %{development test production}
3
+ ALLOWED_ENVS = %(development test production).freeze
4
4
  private_constant :ALLOWED_ENVS
5
5
 
6
6
  def initialize(raw_env)
@@ -15,7 +15,6 @@ module ExercismConfig
15
15
  end
16
16
 
17
17
  private
18
-
19
18
  memoize
20
19
  def config_endpoint
21
20
  return nil if Exercism.env.production?
@@ -18,7 +18,6 @@ module ExercismConfig
18
18
  end
19
19
 
20
20
  private
21
-
22
21
  memoize
23
22
  def config_endpoint
24
23
  return nil if Exercism.env.production?
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = '0.38.0'.freeze
2
+ VERSION = '0.41.0'.freeze
3
3
  end
@@ -1,6 +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
+ aws_tooling_jobs_bucket: exercism-staging-tooling-jobs
4
5
  dynamodb_tooling_jobs_table: tooling_jobs
5
6
  spi_url: http://127.0.0.1:3020
6
7
  tooling_orchestrator_url: http://127.0.0.1:3021
@@ -1,6 +1,7 @@
1
1
  anycable_redis_url: redis://redis:6379/1
2
2
  anycable_rpc_host: 0.0.0.0:50051
3
3
  aws_iterations_bucket: exercism-staging-iterations
4
+ aws_tooling_jobs_bucket: exercism-staging-tooling-jobs
4
5
  dynamodb_tooling_jobs_table: tooling_jobs
5
6
  mysql_master_endpoint: mysql
6
7
  mysql_port: 3306
@@ -1,6 +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
+ aws_tooling_jobs_bucket: exercism-staging-tooling-jobs
4
5
  dynamodb_tooling_jobs_table: tooling_jobs
5
6
  mysql_master_endpoint: localhost
6
7
  mysql_socket: /tmp/mysql.sock
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.38.0
4
+ version: 0.41.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: 2020-08-11 00:00:00.000000000 Z
11
+ date: 2020-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb
@@ -131,7 +131,6 @@ executables:
131
131
  extensions: []
132
132
  extra_rdoc_files: []
133
133
  files:
134
- - ".github/config/rubocop_linter_action.yml"
135
134
  - ".github/workflows/rubocop.yml"
136
135
  - ".github/workflows/tests.yml"
137
136
  - ".gitignore"
@@ -1,12 +0,0 @@
1
- check_name: 'Rubocop Results'
2
-
3
- rubocop_fail_level: 'refactor'
4
-
5
- rubocop_excluded_cops:
6
- - 'Metrics'
7
-
8
- versions:
9
- - rubocop
10
- - rubocop-rails
11
- - rubocop-minitest
12
- - rubocop-performance