qonfig 0.29.0 → 0.31.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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +50 -0
  3. data/.rubocop.yml +1 -1
  4. data/CHANGELOG.md +22 -0
  5. data/Gemfile +0 -3
  6. data/Gemfile.lock +77 -98
  7. data/LICENSE.txt +1 -1
  8. data/README.md +6 -4
  9. data/gemfiles/with_external_deps.gemfile +2 -0
  10. data/gemfiles/with_external_deps.gemfile.lock +84 -99
  11. data/gemfiles/without_external_deps.gemfile.lock +78 -95
  12. data/lib/qonfig/commands/definition/add_nested_option.rb +5 -1
  13. data/lib/qonfig/commands/definition/load_from_env/value_converter.rb +6 -6
  14. data/lib/qonfig/commands/definition/re_define_option.rb +5 -1
  15. data/lib/qonfig/commands/instantiation/values_file.rb +4 -6
  16. data/lib/qonfig/imports/direct_key.rb +4 -4
  17. data/lib/qonfig/imports/mappings.rb +4 -4
  18. data/lib/qonfig/plugins/pretty_print/requirements.rb +1 -1
  19. data/lib/qonfig/plugins/toml/loaders/dynamic.rb +1 -1
  20. data/lib/qonfig/plugins/toml/loaders.rb +1 -1
  21. data/lib/qonfig/plugins.rb +2 -4
  22. data/lib/qonfig/settings/callbacks.rb +9 -0
  23. data/lib/qonfig/settings.rb +104 -18
  24. data/lib/qonfig/uploaders/yaml.rb +1 -1
  25. data/lib/qonfig/validation/building/instance_builder/attribute_consistency.rb +2 -2
  26. data/lib/qonfig/version.rb +1 -1
  27. data/lib/qonfig.rb +1 -0
  28. data/qonfig.gemspec +8 -8
  29. data/spec/features/config_definition_and_representation_spec.rb +7 -7
  30. data/spec/features/freeze_state_spec.rb +10 -10
  31. data/spec/features/nested_access_caching_spec.rb +134 -0
  32. data/spec/features/plugins/pretty_print_spec.rb +15 -15
  33. data/spec/features/plugins/toml/save_to_toml_spec.rb +1 -1
  34. data/spec/features/plugins/vault/expose_vault_spec.rb +1 -1
  35. data/spec/features/run_code_with_temporary_settings_spec.rb +70 -68
  36. data/spec/features/save_to_file/save_to_json_spec.rb +38 -18
  37. metadata +37 -49
  38. data/.github/workflows/test.yml +0 -62
  39. data/.jrubyrc +0 -1
  40. data/sig/.keep +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9b55fb2c5f21d55b75ee61a82898e5b7c00edeb28b11f652d717bbde6dbdc77
4
- data.tar.gz: 1ed16479237bfeb2d373561c075dce564c98bac9b70380b677918450b9050e0b
3
+ metadata.gz: 7a51d2be5daa99fe68c0a7b3db5a802409a8b02e3ca2fe62abca61c0d1f7f0cf
4
+ data.tar.gz: a54a12a2fa42abd3b7025b1427e1939582063a5ccc0f4d3648fe8a336361ce52
5
5
  SHA512:
6
- metadata.gz: dae870ef416e6ab02f9321c6b57a4383aa98b9fb99d82e47bef73a94d139b3c4d07b3b38c70a275d76fecae966bd254dbec33609e54f8db3fb3f02d30099e106
7
- data.tar.gz: f593bbc8e6a4c5ced747181c10c11e061f45f4a6ac679636b98c9c9abe02d0b6d95d4eb9454211930e47c7a0f927b5a8055cfcd57e7c1820a2da1af23e6071a5
6
+ metadata.gz: 915fb311e7af429433f218b04b7162c4691d7208329ae6d104990952a417c59ce6cdc55721f3393b435aa2e07642000c4afdd7902f3f20a018c287661f4462c5
7
+ data.tar.gz: 73f06741831e901ea385c1712d6a56f42e7a780809d5fa8dca848a6025f95fa24ddd84c3a4e80bb2a03934f2c55c65e43827537114801d16d1780b4e7c34572e
@@ -0,0 +1,50 @@
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
+ - ruby: truffleruby
40
+ experimental: true
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+ - uses: ruby/setup-ruby@v1
44
+ with:
45
+ ruby-version: ${{ matrix.ruby }}
46
+ bundler-cache: false
47
+ - name: (Bundler) Install dependencies
48
+ run: bundle install
49
+ - name: (RSpec) Tests
50
+ run: bundle exec rake rspec
data/.rubocop.yml CHANGED
@@ -5,7 +5,7 @@ inherit_gem:
5
5
  - lib/rubocop.rspec.yml
6
6
 
7
7
  AllCops:
8
- TargetRubyVersion: 2.6.0
8
+ TargetRubyVersion: 3.1
9
9
  NewCops: enable
10
10
  Include:
11
11
  - lib/**/*.rb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,28 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [Unreleased]
5
+ ### Added
6
+ - Support for `truffleruby`;
7
+
8
+ ## [0.31.0] - 2026-06-24
9
+ ### Changed
10
+ - Performance: nested / dot-notated reads (`config['a.b.c.d.e.f']`, `config.dig(...)`)
11
+ are now memoized inside each config instance instead of re-splitting and re-digging
12
+ the key on every access. The cache is dropped on any mutation and the invalidation
13
+ cascades up through all parent config instances ("matryoshka" cache invalidation),
14
+ so nested configs (which are separate instances) never serve stale values.
15
+
16
+ ## [0.30.0] - 2024-12-14
17
+ ### Changed
18
+ - Updated development dependencies;
19
+ - Updated code style;
20
+ - Dropped EOL rubies support. Now Qonfig supports rubies started from `>= 3.1`;
21
+ - CI: returned separated plugin-related specs (`bin/rspec -w` + `bin/rspec -n` (with- and without- plugins respectively));
22
+ - CI: dropped coveralls (temporary);
23
+ - CI: droppet java-based rubies support (temporary);
24
+ - Simplified CI (temporary);
25
+
4
26
  ## [0.29.0] - 2024-05-06
5
27
  ### Added
6
28
  - `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
@@ -4,7 +4,4 @@ source 'https://rubygems.org'
4
4
 
5
5
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
 
7
- # Specify your gem's dependencies in qonfig.gemspec
8
7
  gemspec
9
-
10
- gem 'activesupport', '~> 6.0' # AS 7 requires ruby > 2.7
data/Gemfile.lock CHANGED
@@ -1,143 +1,122 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- qonfig (0.29.0)
4
+ qonfig (0.31.0)
5
+ base64 (>= 0.2)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
8
9
  specs:
9
- activesupport (6.1.6)
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.30.1.1)
16
- rubocop (= 1.30.1)
17
- rubocop-performance (= 1.14.2)
18
- rubocop-rails (= 2.15.0)
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.11.1)
23
+ rubocop-rspec (= 3.2.0)
24
+ rubocop-rspec_rails (= 2.30.0)
21
25
  ast (2.4.2)
22
- bundler-audit (0.9.1)
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
- colorize (0.8.1)
31
- concurrent-ruby (1.1.10)
32
- diff-lcs (1.5.0)
33
- docile (1.4.0)
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
- 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)
42
- method_source (1.0.0)
43
- minitest (5.16.0)
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
- pry (0.14.1)
40
+ racc
41
+ pry (0.15.0)
48
42
  coderay (~> 1.1)
49
43
  method_source (~> 1.0)
50
- rack (2.2.3.1)
44
+ racc (1.8.1)
45
+ rack (3.1.8)
51
46
  rainbow (3.1.1)
52
- rake (13.0.6)
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)
58
- rexml (3.2.5)
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)
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.11.0)
68
- rspec-mocks (3.11.1)
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.11.0)
71
- rspec-support (3.11.0)
72
- rubocop (1.30.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.1.0.0)
66
+ parser (>= 3.3.0.2)
75
67
  rainbow (>= 2.2.2, < 4.0)
76
- regexp_parser (>= 1.8, < 3.0)
77
- rexml (>= 3.2.5, < 4.0)
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 (>= 1.4.0, < 3.0)
81
- rubocop-ast (1.18.0)
82
- parser (>= 3.1.1.0)
83
- rubocop-performance (1.14.2)
84
- rubocop (>= 1.7.0, < 2.0)
85
- rubocop-ast (>= 0.4.0)
86
- rubocop-rails (2.15.0)
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.7.0, < 2.0)
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.11.1)
93
- rubocop (~> 1.19)
94
- ruby-progressbar (1.11.0)
95
- sequel (5.57.0)
96
- simplecov (0.21.2)
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.12.3)
98
+ simplecov-html (0.13.1)
101
99
  simplecov-lcov (0.8.0)
102
100
  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)
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
- umbrellio-sequel-plugins (0.6.0.36)
119
- sequel
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-21
126
- arm64-darwin-23
107
+ arm64-darwin-24
108
+ ruby
127
109
 
128
110
  DEPENDENCIES
129
- activesupport (~> 6.0)
130
- armitage-rubocop (~> 1.30)
111
+ activesupport (~> 6, < 8)
112
+ armitage-rubocop (~> 1.59)
131
113
  bundler (>= 1)
132
- bundler-audit (~> 0.9)
133
- ci-helper (~> 0.5)
134
- pry (~> 0.14)
114
+ pry (~> 0.15)
135
115
  qonfig!
136
116
  rake (>= 13)
137
- rspec (~> 3.11)
138
- simplecov (~> 0.21)
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.3.15
122
+ 2.5.23
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018-2020 Rustam Ibragimov
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 &middot; [![Gem Version](https://badge.fury.io/rb/qonfig.svg)](https://badge.fury.io/rb/qonfig) [![Coverage Status](https://coveralls.io/repos/github/0exp/qonfig/badge.svg?branch=master)](https://coveralls.io/github/0exp/qonfig?branch=master)
1
+ # Qonfig &middot; [![Gem Version](https://badge.fury.io/rb/qonfig.svg)](https://badge.fury.io/rb/qonfig) [![Build](https://github.com/0exp/qonfig/actions/workflows/build.yml/badge.svg?branch=master)](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
 
@@ -3329,9 +3329,9 @@ Qonfig.plugin(:vault)
3329
3329
 
3330
3330
  ## Roadmap
3331
3331
 
3332
- - **General**:
3333
- - documentation rework;
3334
3332
  - **Major**:
3333
+ - `on_change`-hooks (in order to proviade the possibility to change something like "re-initialize redis connection pool on each redis config changement" and so on);
3334
+ - Runtime Configuration (with in-memory cache);
3335
3335
  - support for Rails-like secrets;
3336
3336
  - support for persistent data storages (we want to store configs in multiple databases and files);
3337
3337
  - rails plugin;
@@ -3346,7 +3346,9 @@ 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
+ - CI: thread-safety specs for `thruffleruby`;
3351
+
3350
3352
  ## Build
3351
3353
 
3352
3354
  ```shell
@@ -6,5 +6,7 @@ source 'https://rubygems.org'
6
6
  gem 'toml-rb', '>= 2'
7
7
  # @since 0.25.0 (qonfig: :vault plugin)
8
8
  gem 'vault', '>= 0.1'
9
+ # @since 0.30.0 (qonfig: :vault plugin dependency)
10
+ gem 'base64'
9
11
 
10
12
  gemspec path: '..'
@@ -1,149 +1,134 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- qonfig (0.27.0)
4
+ qonfig (0.31.0)
5
+ base64 (>= 0.2)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
8
9
  specs:
9
- activesupport (7.0.3)
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
- armitage-rubocop (1.30.1.1)
15
- rubocop (= 1.30.1)
16
- rubocop-performance (= 1.14.2)
17
- rubocop-rails (= 2.15.0)
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.11.1)
23
+ rubocop-rspec (= 3.2.0)
24
+ rubocop-rspec_rails (= 2.30.0)
20
25
  ast (2.4.2)
21
- aws-eventstream (1.2.0)
22
- aws-sigv4 (1.5.0)
26
+ aws-eventstream (1.3.0)
27
+ aws-sigv4 (1.10.1)
23
28
  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)
29
+ base64 (0.2.0)
31
30
  citrus (3.0.2)
32
31
  coderay (1.1.3)
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
+ 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
- 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)
45
- method_source (1.0.0)
46
- minitest (5.16.0)
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
- pry (0.14.1)
44
+ racc
45
+ pry (0.15.0)
51
46
  coderay (~> 1.1)
52
47
  method_source (~> 1.0)
53
- rack (2.2.3.1)
48
+ racc (1.8.1)
49
+ rack (3.1.8)
54
50
  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)
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.11.0)
71
- rspec-mocks (3.11.1)
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.11.0)
74
- rspec-support (3.11.0)
75
- rubocop (1.30.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.1.0.0)
70
+ parser (>= 3.3.0.2)
78
71
  rainbow (>= 2.2.2, < 4.0)
79
- regexp_parser (>= 1.8, < 3.0)
80
- rexml (>= 3.2.5, < 4.0)
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 (>= 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)
88
- rubocop-ast (>= 0.4.0)
89
- rubocop-rails (2.15.0)
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.7.0, < 2.0)
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.11.1)
96
- rubocop (~> 1.19)
97
- ruby-progressbar (1.11.0)
98
- sequel (5.57.0)
99
- simplecov (0.21.2)
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.12.3)
102
+ simplecov-html (0.13.1)
104
103
  simplecov-lcov (0.8.0)
105
104
  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)
105
+ toml-rb (3.0.1)
120
106
  citrus (~> 3.0, > 3.0)
121
- tzinfo (2.0.4)
107
+ racc (~> 1.7)
108
+ tzinfo (2.0.6)
122
109
  concurrent-ruby (~> 1.0)
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)
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-21
116
+ arm64-darwin-24
117
+ ruby
132
118
 
133
119
  DEPENDENCIES
134
- armitage-rubocop (~> 1.30)
120
+ activesupport (~> 6, < 8)
121
+ armitage-rubocop (~> 1.59)
122
+ base64
135
123
  bundler (>= 1)
136
- bundler-audit (~> 0.9)
137
- ci-helper (~> 0.5)
138
- pry (~> 0.14)
124
+ pry (~> 0.15)
139
125
  qonfig!
140
126
  rake (>= 13)
141
- rspec (~> 3.11)
142
- simplecov (~> 0.21)
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.3.15
134
+ 2.5.23