qonfig 0.29.0 → 0.30.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/.github/workflows/build.yml +48 -0
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile +0 -3
- data/Gemfile.lock +77 -98
- data/LICENSE.txt +1 -1
- data/README.md +3 -2
- data/gemfiles/with_external_deps.gemfile +2 -0
- data/gemfiles/with_external_deps.gemfile.lock +84 -99
- data/gemfiles/without_external_deps.gemfile.lock +78 -95
- data/lib/qonfig/commands/definition/load_from_env/value_converter.rb +6 -6
- data/lib/qonfig/commands/instantiation/values_file.rb +4 -6
- data/lib/qonfig/imports/direct_key.rb +4 -4
- data/lib/qonfig/imports/mappings.rb +4 -4
- data/lib/qonfig/plugins/pretty_print/requirements.rb +1 -1
- data/lib/qonfig/plugins/toml/loaders/dynamic.rb +1 -1
- data/lib/qonfig/plugins/toml/loaders.rb +1 -1
- data/lib/qonfig/plugins.rb +2 -4
- data/lib/qonfig/settings.rb +5 -7
- data/lib/qonfig/uploaders/yaml.rb +1 -1
- data/lib/qonfig/validation/building/instance_builder/attribute_consistency.rb +2 -2
- data/lib/qonfig/version.rb +1 -1
- data/lib/qonfig.rb +1 -0
- data/qonfig.gemspec +8 -8
- data/spec/features/config_definition_and_representation_spec.rb +7 -7
- data/spec/features/freeze_state_spec.rb +10 -10
- data/spec/features/plugins/pretty_print_spec.rb +15 -15
- data/spec/features/plugins/toml/save_to_toml_spec.rb +1 -1
- data/spec/features/plugins/vault/expose_vault_spec.rb +1 -1
- data/spec/features/save_to_file/save_to_json_spec.rb +2 -4
- metadata +36 -45
- data/.github/workflows/test.yml +0 -62
- data/sig/.keep +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bff64afc18729b2319a870162938579b2442a21ffcf808371c49d0449f8ad56e
|
4
|
+
data.tar.gz: f65cbd7f5fa80e35f42f03f7f14886dddebf7e4e6572dd18eda38c6c79e88b6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd25b7a25be0f1a5c481d8a2c8672e10fc50fcdb8013924be149d3815fb28709919f414bf2ee1fb8360b75680b3f6dbfab4cf19eb5315615ca1b4ed76f69e32b
|
7
|
+
data.tar.gz: 790284b0e80c1131fce3d0e4b1d353b147cae0209204c674c2e1042ded3048608d563fedc2ecd32e53240a3a067f02b64037e755e88a803fd879a5f66e9ba98a
|
@@ -0,0 +1,48 @@
|
|
1
|
+
name: Build
|
2
|
+
on: [push]
|
3
|
+
jobs:
|
4
|
+
mainstream-ruby-full-check:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
env:
|
7
|
+
FULL_COVERAGE_CHECK: true
|
8
|
+
TEST_PLUGINS: true
|
9
|
+
FULL_TEST_COVERAGE_CHECK: true
|
10
|
+
BUNDLE_GEMFILE: gemfiles/with_external_deps.gemfile
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v4
|
13
|
+
- uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: "3.3"
|
16
|
+
bundler-cache: true
|
17
|
+
- name: (Bundler) Install dependencies
|
18
|
+
run: bundle install
|
19
|
+
- name: (Rubocop) Check for codestyle
|
20
|
+
run: bundle exec rake rubocop
|
21
|
+
- name: (RSpec) Tests
|
22
|
+
run: bundle exec rake rspec
|
23
|
+
specs-on-relevant-rubies:
|
24
|
+
runs-on: ubuntu-latest
|
25
|
+
continue-on-error: ${{ matrix.experimental }}
|
26
|
+
env:
|
27
|
+
FULL_COVERAGE_CHECK: false
|
28
|
+
TEST_PLUGINS: true
|
29
|
+
FULL_TEST_COVERAGE_CHECK: true
|
30
|
+
BUNDLE_GEMFILE: gemfiles/with_external_deps.gemfile
|
31
|
+
strategy:
|
32
|
+
fail-fast: false
|
33
|
+
matrix:
|
34
|
+
ruby: ["3.1", "3.2", "3.3"]
|
35
|
+
experimental: [false]
|
36
|
+
include:
|
37
|
+
- ruby: head
|
38
|
+
experimental: true
|
39
|
+
steps:
|
40
|
+
- uses: actions/checkout@v4
|
41
|
+
- uses: ruby/setup-ruby@v1
|
42
|
+
with:
|
43
|
+
ruby-version: ${{ matrix.ruby }}
|
44
|
+
bundler-cache: false
|
45
|
+
- name: (Bundler) Install dependencies
|
46
|
+
run: bundle install
|
47
|
+
- name: (RSpec) Tests
|
48
|
+
run: bundle exec rake rspec
|
data/.rubocop.yml
CHANGED
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.30.0] - 2024-12-14
|
5
|
+
### Changed
|
6
|
+
- Updated development dependencies;
|
7
|
+
- Updated code style;
|
8
|
+
- Dropped EOL rubies support. Now Qonfig supports ruby with version `>= 3.1`;
|
9
|
+
- CI: returned separated plugin-related specs (`bin/rspec -w` + `bin/rspec -n` (with- and without- plugins respectively));
|
10
|
+
- CI: dropped coveralls (temporary);
|
11
|
+
- CI: droppet java-based rubies support (temporary);
|
12
|
+
- Simplified CI;
|
13
|
+
|
4
14
|
## [0.29.0] - 2024-05-06
|
5
15
|
### Added
|
6
16
|
- `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.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,143 +1,122 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
qonfig (0.29.
|
4
|
+
qonfig (0.29.1)
|
5
|
+
base64 (>= 0.2)
|
5
6
|
|
6
7
|
GEM
|
7
8
|
remote: https://rubygems.org/
|
8
9
|
specs:
|
9
|
-
activesupport (6.1.
|
10
|
+
activesupport (6.1.7.10)
|
10
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
11
12
|
i18n (>= 1.6, < 2)
|
12
13
|
minitest (>= 5.1)
|
13
14
|
tzinfo (~> 2.0)
|
14
15
|
zeitwerk (~> 2.3)
|
15
|
-
armitage-rubocop (1.
|
16
|
-
rubocop (= 1.
|
17
|
-
rubocop-
|
18
|
-
rubocop-
|
16
|
+
armitage-rubocop (1.68.0.2)
|
17
|
+
rubocop (= 1.68.0)
|
18
|
+
rubocop-capybara (= 2.21.0)
|
19
|
+
rubocop-factory_bot (= 2.26.1)
|
20
|
+
rubocop-performance (= 1.23.0)
|
21
|
+
rubocop-rails (= 2.27.0)
|
19
22
|
rubocop-rake (= 0.6.0)
|
20
|
-
rubocop-rspec (= 2.
|
23
|
+
rubocop-rspec (= 3.2.0)
|
24
|
+
rubocop-rspec_rails (= 2.30.0)
|
21
25
|
ast (2.4.2)
|
22
|
-
|
23
|
-
bundler (>= 1.2.0, < 3)
|
24
|
-
thor (~> 1.0)
|
25
|
-
ci-helper (0.5.0)
|
26
|
-
colorize (~> 0.8)
|
27
|
-
dry-inflector (~> 0.2)
|
28
|
-
umbrellio-sequel-plugins (~> 0.4)
|
26
|
+
base64 (0.2.0)
|
29
27
|
coderay (1.1.3)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
dry-inflector (0.2.1)
|
35
|
-
ffi (1.15.5)
|
36
|
-
i18n (1.10.0)
|
28
|
+
concurrent-ruby (1.3.4)
|
29
|
+
diff-lcs (1.5.1)
|
30
|
+
docile (1.4.1)
|
31
|
+
i18n (1.14.6)
|
37
32
|
concurrent-ruby (~> 1.0)
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
parallel (1.22.1)
|
45
|
-
parser (3.1.2.0)
|
33
|
+
json (2.9.0)
|
34
|
+
language_server-protocol (3.17.0.3)
|
35
|
+
method_source (1.1.0)
|
36
|
+
minitest (5.25.4)
|
37
|
+
parallel (1.26.3)
|
38
|
+
parser (3.3.6.0)
|
46
39
|
ast (~> 2.4.1)
|
47
|
-
|
40
|
+
racc
|
41
|
+
pry (0.15.0)
|
48
42
|
coderay (~> 1.1)
|
49
43
|
method_source (~> 1.0)
|
50
|
-
|
44
|
+
racc (1.8.1)
|
45
|
+
rack (3.1.8)
|
51
46
|
rainbow (3.1.1)
|
52
|
-
rake (13.
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
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)
|
47
|
+
rake (13.2.1)
|
48
|
+
regexp_parser (2.9.3)
|
49
|
+
rspec (3.13.0)
|
50
|
+
rspec-core (~> 3.13.0)
|
51
|
+
rspec-expectations (~> 3.13.0)
|
52
|
+
rspec-mocks (~> 3.13.0)
|
53
|
+
rspec-core (3.13.2)
|
54
|
+
rspec-support (~> 3.13.0)
|
55
|
+
rspec-expectations (3.13.3)
|
66
56
|
diff-lcs (>= 1.2.0, < 2.0)
|
67
|
-
rspec-support (~> 3.
|
68
|
-
rspec-mocks (3.
|
57
|
+
rspec-support (~> 3.13.0)
|
58
|
+
rspec-mocks (3.13.2)
|
69
59
|
diff-lcs (>= 1.2.0, < 2.0)
|
70
|
-
rspec-support (~> 3.
|
71
|
-
rspec-support (3.
|
72
|
-
rubocop (1.
|
60
|
+
rspec-support (~> 3.13.0)
|
61
|
+
rspec-support (3.13.2)
|
62
|
+
rubocop (1.68.0)
|
63
|
+
json (~> 2.3)
|
64
|
+
language_server-protocol (>= 3.17.0)
|
73
65
|
parallel (~> 1.10)
|
74
|
-
parser (>= 3.
|
66
|
+
parser (>= 3.3.0.2)
|
75
67
|
rainbow (>= 2.2.2, < 4.0)
|
76
|
-
regexp_parser (>=
|
77
|
-
|
78
|
-
rubocop-ast (>= 1.18.0, < 2.0)
|
68
|
+
regexp_parser (>= 2.4, < 3.0)
|
69
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
79
70
|
ruby-progressbar (~> 1.7)
|
80
|
-
unicode-display_width (>=
|
81
|
-
rubocop-ast (1.
|
82
|
-
parser (>= 3.
|
83
|
-
rubocop-
|
84
|
-
rubocop (
|
85
|
-
|
86
|
-
|
71
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
72
|
+
rubocop-ast (1.37.0)
|
73
|
+
parser (>= 3.3.1.0)
|
74
|
+
rubocop-capybara (2.21.0)
|
75
|
+
rubocop (~> 1.41)
|
76
|
+
rubocop-factory_bot (2.26.1)
|
77
|
+
rubocop (~> 1.61)
|
78
|
+
rubocop-performance (1.23.0)
|
79
|
+
rubocop (>= 1.48.1, < 2.0)
|
80
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
81
|
+
rubocop-rails (2.27.0)
|
87
82
|
activesupport (>= 4.2.0)
|
88
83
|
rack (>= 1.1)
|
89
|
-
rubocop (>= 1.
|
84
|
+
rubocop (>= 1.52.0, < 2.0)
|
85
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
90
86
|
rubocop-rake (0.6.0)
|
91
87
|
rubocop (~> 1.0)
|
92
|
-
rubocop-rspec (2.
|
93
|
-
rubocop (~> 1.
|
94
|
-
|
95
|
-
|
96
|
-
|
88
|
+
rubocop-rspec (3.2.0)
|
89
|
+
rubocop (~> 1.61)
|
90
|
+
rubocop-rspec_rails (2.30.0)
|
91
|
+
rubocop (~> 1.61)
|
92
|
+
rubocop-rspec (~> 3, >= 3.0.1)
|
93
|
+
ruby-progressbar (1.13.0)
|
94
|
+
simplecov (0.22.0)
|
97
95
|
docile (~> 1.1)
|
98
96
|
simplecov-html (~> 0.11)
|
99
97
|
simplecov_json_formatter (~> 0.1)
|
100
|
-
simplecov-html (0.
|
98
|
+
simplecov-html (0.13.1)
|
101
99
|
simplecov-lcov (0.8.0)
|
102
100
|
simplecov_json_formatter (0.1.4)
|
103
|
-
|
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)
|
112
|
-
symbiont-ruby (0.7.0)
|
113
|
-
terminal-table (3.0.2)
|
114
|
-
unicode-display_width (>= 1.1.1, < 3)
|
115
|
-
thor (1.2.1)
|
116
|
-
tzinfo (2.0.4)
|
101
|
+
tzinfo (2.0.6)
|
117
102
|
concurrent-ruby (~> 1.0)
|
118
|
-
|
119
|
-
|
120
|
-
symbiont-ruby
|
121
|
-
unicode-display_width (2.1.0)
|
122
|
-
zeitwerk (2.6.0)
|
103
|
+
unicode-display_width (2.6.0)
|
104
|
+
zeitwerk (2.7.1)
|
123
105
|
|
124
106
|
PLATFORMS
|
125
|
-
arm64-darwin-
|
126
|
-
|
107
|
+
arm64-darwin-24
|
108
|
+
ruby
|
127
109
|
|
128
110
|
DEPENDENCIES
|
129
|
-
activesupport (~> 6
|
130
|
-
armitage-rubocop (~> 1.
|
111
|
+
activesupport (~> 6, < 8)
|
112
|
+
armitage-rubocop (~> 1.59)
|
131
113
|
bundler (>= 1)
|
132
|
-
|
133
|
-
ci-helper (~> 0.5)
|
134
|
-
pry (~> 0.14)
|
114
|
+
pry (~> 0.15)
|
135
115
|
qonfig!
|
136
116
|
rake (>= 13)
|
137
|
-
rspec (~> 3.
|
138
|
-
simplecov (~> 0.
|
117
|
+
rspec (~> 3.2)
|
118
|
+
simplecov (~> 0.22)
|
139
119
|
simplecov-lcov (~> 0.8)
|
140
|
-
steep (~> 1.0)
|
141
120
|
|
142
121
|
BUNDLED WITH
|
143
|
-
2.
|
122
|
+
2.5.23
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2018-
|
3
|
+
Copyright (c) 2018-2024 Rustam Ibragimov
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Qonfig · [](https://badge.fury.io/rb/qonfig) [](https://badge.fury.io/rb/qonfig) [](https://github.com/0exp/qonfig/actions)
|
2
2
|
|
3
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
4
|
|
@@ -3346,7 +3346,8 @@ Qonfig.plugin(:vault)
|
|
3346
3346
|
- Instantiation and reloading callbacks;
|
3347
3347
|
- File geneartors (.rb-files with a pre-filled code (and (maybe) with a pre-generated yaml/json/etc files));
|
3348
3348
|
- Setting value changement subscriptions and callbacks;
|
3349
|
-
|
3349
|
+
- CI rework (new configs, new steps, no strange dependencies);
|
3350
|
+
|
3350
3351
|
## Build
|
3351
3352
|
|
3352
3353
|
```shell
|
@@ -1,149 +1,134 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
qonfig (0.
|
4
|
+
qonfig (0.29.1)
|
5
|
+
base64 (>= 0.2)
|
5
6
|
|
6
7
|
GEM
|
7
8
|
remote: https://rubygems.org/
|
8
9
|
specs:
|
9
|
-
activesupport (7.
|
10
|
+
activesupport (6.1.7.10)
|
10
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
11
12
|
i18n (>= 1.6, < 2)
|
12
13
|
minitest (>= 5.1)
|
13
14
|
tzinfo (~> 2.0)
|
14
|
-
|
15
|
-
|
16
|
-
rubocop
|
17
|
-
rubocop-
|
15
|
+
zeitwerk (~> 2.3)
|
16
|
+
armitage-rubocop (1.68.0.2)
|
17
|
+
rubocop (= 1.68.0)
|
18
|
+
rubocop-capybara (= 2.21.0)
|
19
|
+
rubocop-factory_bot (= 2.26.1)
|
20
|
+
rubocop-performance (= 1.23.0)
|
21
|
+
rubocop-rails (= 2.27.0)
|
18
22
|
rubocop-rake (= 0.6.0)
|
19
|
-
rubocop-rspec (= 2.
|
23
|
+
rubocop-rspec (= 3.2.0)
|
24
|
+
rubocop-rspec_rails (= 2.30.0)
|
20
25
|
ast (2.4.2)
|
21
|
-
aws-eventstream (1.
|
22
|
-
aws-sigv4 (1.
|
26
|
+
aws-eventstream (1.3.0)
|
27
|
+
aws-sigv4 (1.10.1)
|
23
28
|
aws-eventstream (~> 1, >= 1.0.2)
|
24
|
-
|
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)
|
29
|
+
base64 (0.2.0)
|
31
30
|
citrus (3.0.2)
|
32
31
|
coderay (1.1.3)
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
dry-inflector (0.2.1)
|
38
|
-
ffi (1.15.5)
|
39
|
-
i18n (1.10.0)
|
32
|
+
concurrent-ruby (1.3.4)
|
33
|
+
diff-lcs (1.5.1)
|
34
|
+
docile (1.4.1)
|
35
|
+
i18n (1.14.6)
|
40
36
|
concurrent-ruby (~> 1.0)
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
parallel (1.22.1)
|
48
|
-
parser (3.1.2.0)
|
37
|
+
json (2.9.0)
|
38
|
+
language_server-protocol (3.17.0.3)
|
39
|
+
method_source (1.1.0)
|
40
|
+
minitest (5.25.4)
|
41
|
+
parallel (1.26.3)
|
42
|
+
parser (3.3.6.0)
|
49
43
|
ast (~> 2.4.1)
|
50
|
-
|
44
|
+
racc
|
45
|
+
pry (0.15.0)
|
51
46
|
coderay (~> 1.1)
|
52
47
|
method_source (~> 1.0)
|
53
|
-
|
48
|
+
racc (1.8.1)
|
49
|
+
rack (3.1.8)
|
54
50
|
rainbow (3.1.1)
|
55
|
-
rake (13.
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
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)
|
51
|
+
rake (13.2.1)
|
52
|
+
regexp_parser (2.9.3)
|
53
|
+
rspec (3.13.0)
|
54
|
+
rspec-core (~> 3.13.0)
|
55
|
+
rspec-expectations (~> 3.13.0)
|
56
|
+
rspec-mocks (~> 3.13.0)
|
57
|
+
rspec-core (3.13.2)
|
58
|
+
rspec-support (~> 3.13.0)
|
59
|
+
rspec-expectations (3.13.3)
|
69
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
70
|
-
rspec-support (~> 3.
|
71
|
-
rspec-mocks (3.
|
61
|
+
rspec-support (~> 3.13.0)
|
62
|
+
rspec-mocks (3.13.2)
|
72
63
|
diff-lcs (>= 1.2.0, < 2.0)
|
73
|
-
rspec-support (~> 3.
|
74
|
-
rspec-support (3.
|
75
|
-
rubocop (1.
|
64
|
+
rspec-support (~> 3.13.0)
|
65
|
+
rspec-support (3.13.2)
|
66
|
+
rubocop (1.68.0)
|
67
|
+
json (~> 2.3)
|
68
|
+
language_server-protocol (>= 3.17.0)
|
76
69
|
parallel (~> 1.10)
|
77
|
-
parser (>= 3.
|
70
|
+
parser (>= 3.3.0.2)
|
78
71
|
rainbow (>= 2.2.2, < 4.0)
|
79
|
-
regexp_parser (>=
|
80
|
-
|
81
|
-
rubocop-ast (>= 1.18.0, < 2.0)
|
72
|
+
regexp_parser (>= 2.4, < 3.0)
|
73
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
82
74
|
ruby-progressbar (~> 1.7)
|
83
|
-
unicode-display_width (>=
|
84
|
-
rubocop-ast (1.
|
85
|
-
parser (>= 3.
|
86
|
-
rubocop-
|
87
|
-
rubocop (
|
88
|
-
|
89
|
-
|
75
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
76
|
+
rubocop-ast (1.37.0)
|
77
|
+
parser (>= 3.3.1.0)
|
78
|
+
rubocop-capybara (2.21.0)
|
79
|
+
rubocop (~> 1.41)
|
80
|
+
rubocop-factory_bot (2.26.1)
|
81
|
+
rubocop (~> 1.61)
|
82
|
+
rubocop-performance (1.23.0)
|
83
|
+
rubocop (>= 1.48.1, < 2.0)
|
84
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
85
|
+
rubocop-rails (2.27.0)
|
90
86
|
activesupport (>= 4.2.0)
|
91
87
|
rack (>= 1.1)
|
92
|
-
rubocop (>= 1.
|
88
|
+
rubocop (>= 1.52.0, < 2.0)
|
89
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
93
90
|
rubocop-rake (0.6.0)
|
94
91
|
rubocop (~> 1.0)
|
95
|
-
rubocop-rspec (2.
|
96
|
-
rubocop (~> 1.
|
97
|
-
|
98
|
-
|
99
|
-
|
92
|
+
rubocop-rspec (3.2.0)
|
93
|
+
rubocop (~> 1.61)
|
94
|
+
rubocop-rspec_rails (2.30.0)
|
95
|
+
rubocop (~> 1.61)
|
96
|
+
rubocop-rspec (~> 3, >= 3.0.1)
|
97
|
+
ruby-progressbar (1.13.0)
|
98
|
+
simplecov (0.22.0)
|
100
99
|
docile (~> 1.1)
|
101
100
|
simplecov-html (~> 0.11)
|
102
101
|
simplecov_json_formatter (~> 0.1)
|
103
|
-
simplecov-html (0.
|
102
|
+
simplecov-html (0.13.1)
|
104
103
|
simplecov-lcov (0.8.0)
|
105
104
|
simplecov_json_formatter (0.1.4)
|
106
|
-
|
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)
|
105
|
+
toml-rb (3.0.1)
|
120
106
|
citrus (~> 3.0, > 3.0)
|
121
|
-
|
107
|
+
racc (~> 1.7)
|
108
|
+
tzinfo (2.0.6)
|
122
109
|
concurrent-ruby (~> 1.0)
|
123
|
-
|
124
|
-
|
125
|
-
symbiont-ruby
|
126
|
-
unicode-display_width (2.1.0)
|
127
|
-
vault (0.17.0)
|
110
|
+
unicode-display_width (2.6.0)
|
111
|
+
vault (0.18.2)
|
128
112
|
aws-sigv4
|
113
|
+
zeitwerk (2.7.1)
|
129
114
|
|
130
115
|
PLATFORMS
|
131
|
-
arm64-darwin-
|
116
|
+
arm64-darwin-24
|
117
|
+
ruby
|
132
118
|
|
133
119
|
DEPENDENCIES
|
134
|
-
|
120
|
+
activesupport (~> 6, < 8)
|
121
|
+
armitage-rubocop (~> 1.59)
|
122
|
+
base64
|
135
123
|
bundler (>= 1)
|
136
|
-
|
137
|
-
ci-helper (~> 0.5)
|
138
|
-
pry (~> 0.14)
|
124
|
+
pry (~> 0.15)
|
139
125
|
qonfig!
|
140
126
|
rake (>= 13)
|
141
|
-
rspec (~> 3.
|
142
|
-
simplecov (~> 0.
|
127
|
+
rspec (~> 3.2)
|
128
|
+
simplecov (~> 0.22)
|
143
129
|
simplecov-lcov (~> 0.8)
|
144
|
-
steep (~> 1.0)
|
145
130
|
toml-rb (>= 2)
|
146
131
|
vault (>= 0.1)
|
147
132
|
|
148
133
|
BUNDLED WITH
|
149
|
-
2.
|
134
|
+
2.5.23
|