qonfig 0.27.0 → 0.29.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +72 -58
- data/README.md +27 -4
- data/gemfiles/with_external_deps.gemfile.lock +100 -74
- data/gemfiles/without_external_deps.gemfile.lock +96 -70
- data/lib/qonfig/commands/definition/expose_json.rb +20 -8
- data/lib/qonfig/commands/definition/expose_self.rb +15 -2
- data/lib/qonfig/commands/definition/expose_yaml.rb +19 -7
- data/lib/qonfig/commands/definition/load_from_json.rb +13 -2
- data/lib/qonfig/commands/definition/load_from_self.rb +13 -2
- data/lib/qonfig/commands/definition/load_from_yaml.rb +13 -2
- data/lib/qonfig/dsl.rb +31 -17
- data/lib/qonfig/plugins/toml/commands/definition/expose_toml.rb +19 -8
- data/lib/qonfig/plugins/toml/commands/definition/load_from_toml.rb +13 -3
- data/lib/qonfig/plugins/toml/dsl.rb +10 -7
- data/lib/qonfig/plugins/toml/tomlrb_fixes.rb +3 -2
- data/lib/qonfig/plugins/vault/commands/definition/expose_vault.rb +19 -8
- data/lib/qonfig/plugins/vault/commands/definition/load_from_vault.rb +13 -2
- data/lib/qonfig/plugins/vault/dsl.rb +10 -5
- data/lib/qonfig/settings.rb +4 -2
- data/lib/qonfig/version.rb +1 -1
- data/qonfig.gemspec +10 -10
- data/spec/features/dot_notation_spec.rb +1 -1
- data/spec/features/expose_json_spec.rb +26 -0
- data/spec/features/expose_self/format_option_dynamic_spec.rb +1 -1
- data/spec/features/expose_self/format_option_json_spec.rb +1 -1
- data/spec/features/expose_self/format_option_yaml_spec.rb +1 -1
- data/spec/features/expose_yaml_spec.rb +26 -0
- data/spec/features/load_from_env_spec.rb +2 -2
- data/spec/features/load_from_json_spec.rb +24 -4
- data/spec/features/load_from_yaml_spec.rb +22 -2
- data/spec/features/plugins/toml/expose_self/format_option_toml_spec.rb +1 -1
- data/spec/features/plugins/toml/expose_toml_spec.rb +23 -0
- data/spec/features/plugins/toml/load_from_toml_spec.rb +28 -5
- data/spec/features/plugins/vault/expose_vault_spec.rb +48 -0
- data/spec/features/plugins/vault/load_from_vault_spec.rb +41 -0
- data/spec/features/validation_spec.rb +2 -2
- data/spec/fixtures/conflicting_settings/expose_json_1.json +9 -0
- data/spec/fixtures/conflicting_settings/expose_json_2.json +8 -0
- data/spec/fixtures/conflicting_settings/expose_yaml_1.yml +5 -0
- data/spec/fixtures/conflicting_settings/expose_yaml_2.yml +4 -0
- data/spec/fixtures/conflicting_settings/json_1.json +7 -0
- data/spec/fixtures/conflicting_settings/json_2.json +6 -0
- data/spec/fixtures/conflicting_settings/yaml_1.yml +4 -0
- data/spec/fixtures/conflicting_settings/yaml_2.yml +3 -0
- data/spec/fixtures/plugins/toml/conflicting_settings/expose_toml_1.toml +6 -0
- data/spec/fixtures/plugins/toml/conflicting_settings/expose_toml_2.toml +5 -0
- data/spec/fixtures/plugins/toml/conflicting_settings/toml_1.toml +5 -0
- data/spec/fixtures/plugins/toml/conflicting_settings/toml_2.toml +4 -0
- metadata +53 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9b55fb2c5f21d55b75ee61a82898e5b7c00edeb28b11f652d717bbde6dbdc77
|
|
4
|
+
data.tar.gz: 1ed16479237bfeb2d373561c075dce564c98bac9b70380b677918450b9050e0b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dae870ef416e6ab02f9321c6b57a4383aa98b9fb99d82e47bef73a94d139b3c4d07b3b38c70a275d76fecae966bd254dbec33609e54f8db3fb3f02d30099e106
|
|
7
|
+
data.tar.gz: f593bbc8e6a4c5ced747181c10c11e061f45f4a6ac679636b98c9c9abe02d0b6d95d4eb9454211930e47c7a0f927b5a8055cfcd57e7c1820a2da1af23e6071a5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [0.29.0] - 2024-05-06
|
|
5
|
+
### Added
|
|
6
|
+
- `replace_on_merge` option for load_from, expose-like methods that allows to configure behaviour on the conflicting key: deep merge (by default) or replacing.
|
|
7
|
+
|
|
8
|
+
## [0.28.0] - 2022-06-12
|
|
9
|
+
### Changed
|
|
10
|
+
- Support for the new `toml-rb` release (`2.1`);
|
|
11
|
+
- Updated dev-dependencies;
|
|
12
|
+
- Existing code base was adopted to the new rubocop ruleset;
|
|
13
|
+
|
|
4
14
|
## [0.27.0] - 2022-01-12
|
|
5
15
|
### Changed
|
|
6
16
|
- Drop Ruby 2.5 support.
|
data/Gemfile.lock
CHANGED
|
@@ -1,129 +1,143 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
qonfig (0.
|
|
4
|
+
qonfig (0.29.0)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
activesupport (6.1.
|
|
9
|
+
activesupport (6.1.6)
|
|
10
10
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
11
11
|
i18n (>= 1.6, < 2)
|
|
12
12
|
minitest (>= 5.1)
|
|
13
13
|
tzinfo (~> 2.0)
|
|
14
14
|
zeitwerk (~> 2.3)
|
|
15
|
-
armitage-rubocop (1.
|
|
16
|
-
rubocop (= 1.
|
|
17
|
-
rubocop-performance (= 1.
|
|
18
|
-
rubocop-rails (= 2.
|
|
15
|
+
armitage-rubocop (1.30.1.1)
|
|
16
|
+
rubocop (= 1.30.1)
|
|
17
|
+
rubocop-performance (= 1.14.2)
|
|
18
|
+
rubocop-rails (= 2.15.0)
|
|
19
19
|
rubocop-rake (= 0.6.0)
|
|
20
|
-
rubocop-rspec (= 2.
|
|
20
|
+
rubocop-rspec (= 2.11.1)
|
|
21
21
|
ast (2.4.2)
|
|
22
|
-
bundler-audit (0.9.
|
|
22
|
+
bundler-audit (0.9.1)
|
|
23
23
|
bundler (>= 1.2.0, < 3)
|
|
24
24
|
thor (~> 1.0)
|
|
25
|
-
ci-helper (0.
|
|
25
|
+
ci-helper (0.5.0)
|
|
26
26
|
colorize (~> 0.8)
|
|
27
27
|
dry-inflector (~> 0.2)
|
|
28
28
|
umbrellio-sequel-plugins (~> 0.4)
|
|
29
29
|
coderay (1.1.3)
|
|
30
30
|
colorize (0.8.1)
|
|
31
|
-
concurrent-ruby (1.1.
|
|
31
|
+
concurrent-ruby (1.1.10)
|
|
32
32
|
diff-lcs (1.5.0)
|
|
33
33
|
docile (1.4.0)
|
|
34
34
|
dry-inflector (0.2.1)
|
|
35
|
-
ffi (1.15.5
|
|
36
|
-
i18n (1.
|
|
35
|
+
ffi (1.15.5)
|
|
36
|
+
i18n (1.10.0)
|
|
37
37
|
concurrent-ruby (~> 1.0)
|
|
38
|
+
language_server-protocol (3.16.0.3)
|
|
39
|
+
listen (3.7.1)
|
|
40
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
41
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
38
42
|
method_source (1.0.0)
|
|
39
|
-
minitest (5.
|
|
40
|
-
parallel (1.
|
|
41
|
-
parser (3.1.
|
|
43
|
+
minitest (5.16.0)
|
|
44
|
+
parallel (1.22.1)
|
|
45
|
+
parser (3.1.2.0)
|
|
42
46
|
ast (~> 2.4.1)
|
|
43
47
|
pry (0.14.1)
|
|
44
48
|
coderay (~> 1.1)
|
|
45
49
|
method_source (~> 1.0)
|
|
46
|
-
|
|
47
|
-
coderay (~> 1.1)
|
|
48
|
-
method_source (~> 1.0)
|
|
49
|
-
spoon (~> 0.0)
|
|
50
|
-
rack (2.2.3)
|
|
50
|
+
rack (2.2.3.1)
|
|
51
51
|
rainbow (3.1.1)
|
|
52
52
|
rake (13.0.6)
|
|
53
|
-
|
|
53
|
+
rb-fsevent (0.11.1)
|
|
54
|
+
rb-inotify (0.10.1)
|
|
55
|
+
ffi (~> 1.0)
|
|
56
|
+
rbs (2.5.0)
|
|
57
|
+
regexp_parser (2.5.0)
|
|
54
58
|
rexml (3.2.5)
|
|
55
|
-
rspec (3.
|
|
56
|
-
rspec-core (~> 3.
|
|
57
|
-
rspec-expectations (~> 3.
|
|
58
|
-
rspec-mocks (~> 3.
|
|
59
|
-
rspec-core (3.
|
|
60
|
-
rspec-support (~> 3.
|
|
61
|
-
rspec-expectations (3.
|
|
59
|
+
rspec (3.11.0)
|
|
60
|
+
rspec-core (~> 3.11.0)
|
|
61
|
+
rspec-expectations (~> 3.11.0)
|
|
62
|
+
rspec-mocks (~> 3.11.0)
|
|
63
|
+
rspec-core (3.11.0)
|
|
64
|
+
rspec-support (~> 3.11.0)
|
|
65
|
+
rspec-expectations (3.11.0)
|
|
62
66
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
63
|
-
rspec-support (~> 3.
|
|
64
|
-
rspec-mocks (3.
|
|
67
|
+
rspec-support (~> 3.11.0)
|
|
68
|
+
rspec-mocks (3.11.1)
|
|
65
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
66
|
-
rspec-support (~> 3.
|
|
67
|
-
rspec-support (3.
|
|
68
|
-
rubocop (1.
|
|
70
|
+
rspec-support (~> 3.11.0)
|
|
71
|
+
rspec-support (3.11.0)
|
|
72
|
+
rubocop (1.30.1)
|
|
69
73
|
parallel (~> 1.10)
|
|
70
|
-
parser (>= 3.
|
|
74
|
+
parser (>= 3.1.0.0)
|
|
71
75
|
rainbow (>= 2.2.2, < 4.0)
|
|
72
76
|
regexp_parser (>= 1.8, < 3.0)
|
|
73
|
-
rexml
|
|
74
|
-
rubocop-ast (>= 1.
|
|
77
|
+
rexml (>= 3.2.5, < 4.0)
|
|
78
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
75
79
|
ruby-progressbar (~> 1.7)
|
|
76
80
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
77
|
-
rubocop-ast (1.
|
|
78
|
-
parser (>= 3.
|
|
79
|
-
rubocop-performance (1.
|
|
81
|
+
rubocop-ast (1.18.0)
|
|
82
|
+
parser (>= 3.1.1.0)
|
|
83
|
+
rubocop-performance (1.14.2)
|
|
80
84
|
rubocop (>= 1.7.0, < 2.0)
|
|
81
85
|
rubocop-ast (>= 0.4.0)
|
|
82
|
-
rubocop-rails (2.
|
|
86
|
+
rubocop-rails (2.15.0)
|
|
83
87
|
activesupport (>= 4.2.0)
|
|
84
88
|
rack (>= 1.1)
|
|
85
89
|
rubocop (>= 1.7.0, < 2.0)
|
|
86
90
|
rubocop-rake (0.6.0)
|
|
87
91
|
rubocop (~> 1.0)
|
|
88
|
-
rubocop-rspec (2.
|
|
92
|
+
rubocop-rspec (2.11.1)
|
|
89
93
|
rubocop (~> 1.19)
|
|
90
94
|
ruby-progressbar (1.11.0)
|
|
91
|
-
sequel (5.
|
|
95
|
+
sequel (5.57.0)
|
|
92
96
|
simplecov (0.21.2)
|
|
93
97
|
docile (~> 1.1)
|
|
94
98
|
simplecov-html (~> 0.11)
|
|
95
99
|
simplecov_json_formatter (~> 0.1)
|
|
96
100
|
simplecov-html (0.12.3)
|
|
97
101
|
simplecov-lcov (0.8.0)
|
|
98
|
-
simplecov_json_formatter (0.1.
|
|
99
|
-
|
|
100
|
-
|
|
102
|
+
simplecov_json_formatter (0.1.4)
|
|
103
|
+
steep (1.0.0)
|
|
104
|
+
activesupport (>= 5.1)
|
|
105
|
+
language_server-protocol (>= 3.15, < 4.0)
|
|
106
|
+
listen (~> 3.0)
|
|
107
|
+
parallel (>= 1.0.0)
|
|
108
|
+
parser (>= 3.0)
|
|
109
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
110
|
+
rbs (>= 2.3.2)
|
|
111
|
+
terminal-table (>= 2, < 4)
|
|
101
112
|
symbiont-ruby (0.7.0)
|
|
113
|
+
terminal-table (3.0.2)
|
|
114
|
+
unicode-display_width (>= 1.1.1, < 3)
|
|
102
115
|
thor (1.2.1)
|
|
103
116
|
tzinfo (2.0.4)
|
|
104
117
|
concurrent-ruby (~> 1.0)
|
|
105
|
-
umbrellio-sequel-plugins (0.
|
|
118
|
+
umbrellio-sequel-plugins (0.6.0.36)
|
|
106
119
|
sequel
|
|
107
120
|
symbiont-ruby
|
|
108
121
|
unicode-display_width (2.1.0)
|
|
109
|
-
zeitwerk (2.
|
|
122
|
+
zeitwerk (2.6.0)
|
|
110
123
|
|
|
111
124
|
PLATFORMS
|
|
112
|
-
|
|
113
|
-
|
|
125
|
+
arm64-darwin-21
|
|
126
|
+
arm64-darwin-23
|
|
114
127
|
|
|
115
128
|
DEPENDENCIES
|
|
116
129
|
activesupport (~> 6.0)
|
|
117
|
-
armitage-rubocop (~> 1.
|
|
118
|
-
bundler
|
|
119
|
-
bundler-audit
|
|
120
|
-
ci-helper
|
|
121
|
-
pry
|
|
130
|
+
armitage-rubocop (~> 1.30)
|
|
131
|
+
bundler (>= 1)
|
|
132
|
+
bundler-audit (~> 0.9)
|
|
133
|
+
ci-helper (~> 0.5)
|
|
134
|
+
pry (~> 0.14)
|
|
122
135
|
qonfig!
|
|
123
136
|
rake (>= 13)
|
|
124
|
-
rspec (~> 3.
|
|
125
|
-
simplecov (~> 0.
|
|
126
|
-
simplecov-lcov
|
|
137
|
+
rspec (~> 3.11)
|
|
138
|
+
simplecov (~> 0.21)
|
|
139
|
+
simplecov-lcov (~> 0.8)
|
|
140
|
+
steep (~> 1.0)
|
|
127
141
|
|
|
128
142
|
BUNDLED WITH
|
|
129
|
-
2.3.
|
|
143
|
+
2.3.15
|
data/README.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
|
-
# Qonfig · [](https://badge.fury.io/rb/qonfig) [](https://badge.fury.io/rb/qonfig) [](https://coveralls.io/github/0exp/qonfig?branch=master)
|
|
2
|
+
|
|
3
|
+
Powerful configuration Ruby-framework with a support for many commonly used config formats with a multi-functional API, developer-friendly DSL and object-oriented behavior.
|
|
4
|
+
|
|
5
|
+
- Support for: **YAML**, **TOML**, **JSON**, **ENV**, **\_\_END\_\_**-instructions;
|
|
6
|
+
- Fully thread-safe;
|
|
7
|
+
- Object-oriented behavior (config as an object, inhertance, composition, etc), with an abilities of lazy-instantiation;
|
|
8
|
+
- Pluggable and extendable multi-functional API;
|
|
9
|
+
- Developer-friendly DSL :)
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
# in the past...:
|
|
2
13
|
|
|
3
14
|
Config. Defined as a class. Used as an instance. Support for inheritance and composition.
|
|
4
|
-
Lazy instantiation. Thread-safe. Command-style DSL. Validation layer. **
|
|
5
|
-
|
|
15
|
+
Lazy instantiation. Thread-safe. Command-style DSL. Validation layer. **Dot-notation**)
|
|
16
|
+
And pretty-print :) Support for **YAML**, **TOML**, **JSON**, **\_\_END\_\_**, **ENV**.
|
|
17
|
+
Extremely simple to define. Extremely simple to use. That's all? **Not** :)
|
|
18
|
+
```
|
|
6
19
|
|
|
7
20
|
## Installation
|
|
8
21
|
|
|
@@ -2058,6 +2071,7 @@ end
|
|
|
2058
2071
|
- `:strict` mode (fail behaviour when the required yaml file doesnt exist):
|
|
2059
2072
|
- `true` (by default) - causes `Qonfig::FileNotFoundError`;
|
|
2060
2073
|
- `false` - do nothing, ignore current command;
|
|
2074
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2061
2075
|
|
|
2062
2076
|
```yaml
|
|
2063
2077
|
# travis.yml
|
|
@@ -2154,6 +2168,7 @@ Config.new.to_h # => { "nonexistent_yaml" => {}, "another_key" => nil }
|
|
|
2154
2168
|
- `false`:
|
|
2155
2169
|
- file is not required;
|
|
2156
2170
|
- root key with `:env` name is not required (if `via: :env_key` is used);
|
|
2171
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2157
2172
|
|
|
2158
2173
|
#### Environment is defined as a root key of YAML file
|
|
2159
2174
|
|
|
@@ -2244,6 +2259,7 @@ config.settings.web.password # => staging_password (from sidekiq.staging.yml)
|
|
|
2244
2259
|
- `:strict` mode (fail behaviour when the required yaml file doesnt exist):
|
|
2245
2260
|
- `true` (by default) - causes `Qonfig::FileNotFoundError`;
|
|
2246
2261
|
- `false` - do nothing, ignore current command;
|
|
2262
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2247
2263
|
|
|
2248
2264
|
```json
|
|
2249
2265
|
// options.json
|
|
@@ -2319,6 +2335,7 @@ Config.new.to_h # => { "nonexistent_json" => {}, "another_key" => nil }
|
|
|
2319
2335
|
- `false`:
|
|
2320
2336
|
- file is not required;
|
|
2321
2337
|
- root key with `:env` name is not required (if `via: :env_key` is used);
|
|
2338
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2322
2339
|
|
|
2323
2340
|
#### Environment is defined as a root key of JSON file
|
|
2324
2341
|
|
|
@@ -2489,6 +2506,7 @@ config.settings['RUN_CI'] # => '1'
|
|
|
2489
2506
|
- `format: :yaml` - **YAML** format;
|
|
2490
2507
|
- `format: :json` - **JSON** format;
|
|
2491
2508
|
- `format: :toml` - **TOML** format (via `toml`-plugin);
|
|
2509
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2492
2510
|
|
|
2493
2511
|
```ruby
|
|
2494
2512
|
class Config < Qonfig::DataSet
|
|
@@ -2537,6 +2555,7 @@ connection_timeout:
|
|
|
2537
2555
|
- `format: :yaml` - **YAML** format;
|
|
2538
2556
|
- `format: :json` - **JSON** format;
|
|
2539
2557
|
- `format: :toml` - **TOML** format (via `toml`-plugin);
|
|
2558
|
+
- `:replace_on_merge` - whether the setting should be replaced on the key conflict, otherwise, it will be deep merged (default);
|
|
2540
2559
|
|
|
2541
2560
|
```ruby
|
|
2542
2561
|
class Config < Qonfig::DataSet
|
|
@@ -3310,6 +3329,8 @@ Qonfig.plugin(:vault)
|
|
|
3310
3329
|
|
|
3311
3330
|
## Roadmap
|
|
3312
3331
|
|
|
3332
|
+
- **General**:
|
|
3333
|
+
- documentation rework;
|
|
3313
3334
|
- **Major**:
|
|
3314
3335
|
- support for Rails-like secrets;
|
|
3315
3336
|
- support for persistent data storages (we want to store configs in multiple databases and files);
|
|
@@ -3323,7 +3344,9 @@ Qonfig.plugin(:vault)
|
|
|
3323
3344
|
- External validation class with an importing api for better custom validations;
|
|
3324
3345
|
- Setting value changement trace (in `anyway_config` manner);
|
|
3325
3346
|
- Instantiation and reloading callbacks;
|
|
3326
|
-
|
|
3347
|
+
- File geneartors (.rb-files with a pre-filled code (and (maybe) with a pre-generated yaml/json/etc files));
|
|
3348
|
+
- Setting value changement subscriptions and callbacks;
|
|
3349
|
+
|
|
3327
3350
|
## Build
|
|
3328
3351
|
|
|
3329
3352
|
```shell
|
|
@@ -1,123 +1,149 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
qonfig (0.
|
|
4
|
+
qonfig (0.27.0)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
activesupport (
|
|
9
|
+
activesupport (7.0.3)
|
|
10
10
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
11
11
|
i18n (>= 1.6, < 2)
|
|
12
12
|
minitest (>= 5.1)
|
|
13
13
|
tzinfo (~> 2.0)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
rubocop (= 1.
|
|
17
|
-
rubocop-
|
|
18
|
-
rubocop-
|
|
19
|
-
rubocop-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
aws-
|
|
23
|
-
aws-sigv4 (1.2.2)
|
|
14
|
+
armitage-rubocop (1.30.1.1)
|
|
15
|
+
rubocop (= 1.30.1)
|
|
16
|
+
rubocop-performance (= 1.14.2)
|
|
17
|
+
rubocop-rails (= 2.15.0)
|
|
18
|
+
rubocop-rake (= 0.6.0)
|
|
19
|
+
rubocop-rspec (= 2.11.1)
|
|
20
|
+
ast (2.4.2)
|
|
21
|
+
aws-eventstream (1.2.0)
|
|
22
|
+
aws-sigv4 (1.5.0)
|
|
24
23
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
24
|
+
bundler-audit (0.9.1)
|
|
25
|
+
bundler (>= 1.2.0, < 3)
|
|
26
|
+
thor (~> 1.0)
|
|
27
|
+
ci-helper (0.5.0)
|
|
28
|
+
colorize (~> 0.8)
|
|
29
|
+
dry-inflector (~> 0.2)
|
|
30
|
+
umbrellio-sequel-plugins (~> 0.4)
|
|
25
31
|
citrus (3.0.2)
|
|
26
32
|
coderay (1.1.3)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
33
|
+
colorize (0.8.1)
|
|
34
|
+
concurrent-ruby (1.1.10)
|
|
35
|
+
diff-lcs (1.5.0)
|
|
36
|
+
docile (1.4.0)
|
|
37
|
+
dry-inflector (0.2.1)
|
|
38
|
+
ffi (1.15.5)
|
|
39
|
+
i18n (1.10.0)
|
|
32
40
|
concurrent-ruby (~> 1.0)
|
|
41
|
+
language_server-protocol (3.16.0.3)
|
|
42
|
+
listen (3.7.1)
|
|
43
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
44
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
33
45
|
method_source (1.0.0)
|
|
34
|
-
minitest (5.
|
|
35
|
-
parallel (1.
|
|
36
|
-
parser (3.
|
|
46
|
+
minitest (5.16.0)
|
|
47
|
+
parallel (1.22.1)
|
|
48
|
+
parser (3.1.2.0)
|
|
37
49
|
ast (~> 2.4.1)
|
|
38
|
-
pry (0.
|
|
50
|
+
pry (0.14.1)
|
|
39
51
|
coderay (~> 1.1)
|
|
40
52
|
method_source (~> 1.0)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
regexp_parser (2.0
|
|
49
|
-
rexml (3.2.
|
|
50
|
-
rspec (3.
|
|
51
|
-
rspec-core (~> 3.
|
|
52
|
-
rspec-expectations (~> 3.
|
|
53
|
-
rspec-mocks (~> 3.
|
|
54
|
-
rspec-core (3.
|
|
55
|
-
rspec-support (~> 3.
|
|
56
|
-
rspec-expectations (3.
|
|
53
|
+
rack (2.2.3.1)
|
|
54
|
+
rainbow (3.1.1)
|
|
55
|
+
rake (13.0.6)
|
|
56
|
+
rb-fsevent (0.11.1)
|
|
57
|
+
rb-inotify (0.10.1)
|
|
58
|
+
ffi (~> 1.0)
|
|
59
|
+
rbs (2.5.0)
|
|
60
|
+
regexp_parser (2.5.0)
|
|
61
|
+
rexml (3.2.5)
|
|
62
|
+
rspec (3.11.0)
|
|
63
|
+
rspec-core (~> 3.11.0)
|
|
64
|
+
rspec-expectations (~> 3.11.0)
|
|
65
|
+
rspec-mocks (~> 3.11.0)
|
|
66
|
+
rspec-core (3.11.0)
|
|
67
|
+
rspec-support (~> 3.11.0)
|
|
68
|
+
rspec-expectations (3.11.0)
|
|
57
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
58
|
-
rspec-support (~> 3.
|
|
59
|
-
rspec-mocks (3.
|
|
70
|
+
rspec-support (~> 3.11.0)
|
|
71
|
+
rspec-mocks (3.11.1)
|
|
60
72
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
61
|
-
rspec-support (~> 3.
|
|
62
|
-
rspec-support (3.
|
|
63
|
-
rubocop (1.
|
|
73
|
+
rspec-support (~> 3.11.0)
|
|
74
|
+
rspec-support (3.11.0)
|
|
75
|
+
rubocop (1.30.1)
|
|
64
76
|
parallel (~> 1.10)
|
|
65
|
-
parser (>=
|
|
77
|
+
parser (>= 3.1.0.0)
|
|
66
78
|
rainbow (>= 2.2.2, < 4.0)
|
|
67
79
|
regexp_parser (>= 1.8, < 3.0)
|
|
68
|
-
rexml
|
|
69
|
-
rubocop-ast (>= 1.
|
|
80
|
+
rexml (>= 3.2.5, < 4.0)
|
|
81
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
70
82
|
ruby-progressbar (~> 1.7)
|
|
71
|
-
unicode-display_width (>= 1.4.0, <
|
|
72
|
-
rubocop-ast (1.
|
|
73
|
-
parser (>=
|
|
74
|
-
rubocop-performance (1.
|
|
75
|
-
rubocop (>=
|
|
83
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
84
|
+
rubocop-ast (1.18.0)
|
|
85
|
+
parser (>= 3.1.1.0)
|
|
86
|
+
rubocop-performance (1.14.2)
|
|
87
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
76
88
|
rubocop-ast (>= 0.4.0)
|
|
77
|
-
rubocop-rails (2.
|
|
89
|
+
rubocop-rails (2.15.0)
|
|
78
90
|
activesupport (>= 4.2.0)
|
|
79
91
|
rack (>= 1.1)
|
|
80
|
-
rubocop (>=
|
|
81
|
-
rubocop-rake (0.
|
|
82
|
-
rubocop
|
|
83
|
-
rubocop-rspec (2.1.0)
|
|
92
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
93
|
+
rubocop-rake (0.6.0)
|
|
84
94
|
rubocop (~> 1.0)
|
|
85
|
-
|
|
86
|
-
|
|
95
|
+
rubocop-rspec (2.11.1)
|
|
96
|
+
rubocop (~> 1.19)
|
|
97
|
+
ruby-progressbar (1.11.0)
|
|
98
|
+
sequel (5.57.0)
|
|
87
99
|
simplecov (0.21.2)
|
|
88
100
|
docile (~> 1.1)
|
|
89
101
|
simplecov-html (~> 0.11)
|
|
90
102
|
simplecov_json_formatter (~> 0.1)
|
|
91
103
|
simplecov-html (0.12.3)
|
|
92
104
|
simplecov-lcov (0.8.0)
|
|
93
|
-
simplecov_json_formatter (0.1.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
105
|
+
simplecov_json_formatter (0.1.4)
|
|
106
|
+
steep (1.0.0)
|
|
107
|
+
activesupport (>= 5.1)
|
|
108
|
+
language_server-protocol (>= 3.15, < 4.0)
|
|
109
|
+
listen (~> 3.0)
|
|
110
|
+
parallel (>= 1.0.0)
|
|
111
|
+
parser (>= 3.0)
|
|
112
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
113
|
+
rbs (>= 2.3.2)
|
|
114
|
+
terminal-table (>= 2, < 4)
|
|
115
|
+
symbiont-ruby (0.7.0)
|
|
116
|
+
terminal-table (3.0.2)
|
|
117
|
+
unicode-display_width (>= 1.1.1, < 3)
|
|
118
|
+
thor (1.2.1)
|
|
119
|
+
toml-rb (2.1.2)
|
|
97
120
|
citrus (~> 3.0, > 3.0)
|
|
98
121
|
tzinfo (2.0.4)
|
|
99
122
|
concurrent-ruby (~> 1.0)
|
|
100
|
-
|
|
101
|
-
|
|
123
|
+
umbrellio-sequel-plugins (0.6.0.36)
|
|
124
|
+
sequel
|
|
125
|
+
symbiont-ruby
|
|
126
|
+
unicode-display_width (2.1.0)
|
|
127
|
+
vault (0.17.0)
|
|
102
128
|
aws-sigv4
|
|
103
|
-
zeitwerk (2.4.2)
|
|
104
129
|
|
|
105
130
|
PLATFORMS
|
|
106
|
-
|
|
107
|
-
x86_64-darwin-19
|
|
108
|
-
x86_64-linux
|
|
131
|
+
arm64-darwin-21
|
|
109
132
|
|
|
110
133
|
DEPENDENCIES
|
|
111
|
-
armitage-rubocop (~> 1.
|
|
112
|
-
bundler
|
|
113
|
-
|
|
134
|
+
armitage-rubocop (~> 1.30)
|
|
135
|
+
bundler (>= 1)
|
|
136
|
+
bundler-audit (~> 0.9)
|
|
137
|
+
ci-helper (~> 0.5)
|
|
138
|
+
pry (~> 0.14)
|
|
114
139
|
qonfig!
|
|
115
140
|
rake (>= 13)
|
|
116
|
-
rspec (~> 3.
|
|
117
|
-
simplecov (~> 0.
|
|
118
|
-
simplecov-lcov
|
|
141
|
+
rspec (~> 3.11)
|
|
142
|
+
simplecov (~> 0.21)
|
|
143
|
+
simplecov-lcov (~> 0.8)
|
|
144
|
+
steep (~> 1.0)
|
|
119
145
|
toml-rb (>= 2)
|
|
120
146
|
vault (>= 0.1)
|
|
121
147
|
|
|
122
148
|
BUNDLED WITH
|
|
123
|
-
2.
|
|
149
|
+
2.3.15
|