exercism_config 0.25.0 → 0.26.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: d7e49af42a0c31a943a072556d1ddb4113aa5180f18c659995d38b0677c46a5a
4
- data.tar.gz: 74fcaf76457c34b7c74a2947e32bb571b9aefe172c550c473e56e218bd07a6f9
3
+ metadata.gz: f3b9c7e4dcbf09e9d69d88fca3077c2e816ff287b67b3cba2a368709befcdf89
4
+ data.tar.gz: 5a303f30e356de04c8e5c358a099e391ac2c2c20cf75b96dacf0a0b5d89dddc4
5
5
  SHA512:
6
- metadata.gz: 718bb639f213a601583190ef48dfc2072218cafe0e66831b89b9c6d3184e4985773948cbf610618ff9aade4ba047a2ace6451438a1d2f17b8e3944ecb37ce60d
7
- data.tar.gz: 0f5eab12fb96f6972e5696ffea00c43f0021b47226f9f0126a0316a17fea526c1669a2faaa2fed6d668e389925a600528e5d8ec526b8505804aa05bea0733718
6
+ metadata.gz: 4b2702cb4c20e8ce11c0fd514d98d65af9effabb466d13e948fd3f872e1ad56e8b8b558bff34ef1a78ed95019b5cd67885d28ea75cd26b62978f2f2d3985ddaa
7
+ data.tar.gz: 3b673b37307b1eee3c6e125682fef0fed504d7c1d8e8f530ed97209514f16ab32fdb367e5e00d50e3800fcf93dabb1fd85c9813b7290924ffdfdde0881fcbbe3
@@ -7,7 +7,7 @@ module ExercismConfig
7
7
  raise Exercism::ConfigError, "No environment set - set one of EXERCISM_ENV, RAILS_ENV or APP_ENV" unless env
8
8
 
9
9
  unless %w[development test production].include?(env)
10
- raise Exercism::ConfigError, "environments must be one of development test production. Got #{env}"
10
+ raise Exercism::ConfigError, "environment must be one of development, test or production. Got #{env}."
11
11
  end
12
12
 
13
13
  env.to_sym
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = "0.25.0"
2
+ VERSION = "0.26.0"
3
3
  end
@@ -5,3 +5,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
7
  rds_port: <%= ENV["MYSQL_PORT"] %>
8
+ spi_url: http://127.0.0.1:3020
@@ -1,7 +1,8 @@
1
1
  aws_iterations_bucket: exercism-staging-iterations
2
2
  dynamodb_tooling_jobs_table: tooling_jobs
3
3
  tooling_orchestrator_url: http://127.0.0.1:3021
4
- anycable_redis_url: 'redis://127.0.0.1:6379/1'
5
- anycable_rpc_host: '127.0.0.1:50051'
4
+ anycable_redis_url: redis://127.0.0.1:6379/1
5
+ anycable_rpc_host: 127.0.0.1:50051
6
6
  rds_master_endpoint: localhost
7
7
  mysql_socket: /tmp/mysql.sock
8
+ spi_url: http://127.0.0.1:3020
@@ -5,3 +5,4 @@ anycable_redis_url: redis://redis:6379/1
5
5
  anycable_rpc_host: 0.0.0.0:50051
6
6
  rds_master_endpoint: mysql
7
7
  rds_port: 3306
8
+ spi_url: http://website:3020
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.25.0
4
+ version: 0.26.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-07-29 00:00:00.000000000 Z
11
+ date: 2020-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb
@@ -137,7 +137,6 @@ files:
137
137
  - README.md
138
138
  - Rakefile
139
139
  - bin/console
140
- - bin/setup
141
140
  - bin/setup_exercism_config
142
141
  - exercism_config.gemspec
143
142
  - lib/exercism/config.rb
@@ -171,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
171
170
  - !ruby/object:Gem::Version
172
171
  version: '0'
173
172
  requirements: []
174
- rubygems_version: 3.1.2
173
+ rubygems_version: 3.0.8
175
174
  signing_key:
176
175
  specification_version: 4
177
176
  summary: Retrieves stored config for Exercism
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- setup_#!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here