active_manageable 0.1.2 → 0.3.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 (36) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +23 -11
  3. data/.gitignore +1 -1
  4. data/.rubocop.yml +12 -19
  5. data/Appraisals +19 -10
  6. data/CHANGELOG.md +18 -0
  7. data/Gemfile.lock +179 -108
  8. data/README.md +81 -11
  9. data/active_manageable.gemspec +7 -7
  10. data/gemfiles/rails_7_0.gemfile +9 -2
  11. data/gemfiles/{rails_6_1.gemfile → rails_7_1.gemfile} +2 -2
  12. data/gemfiles/{rails_6_0.gemfile → rails_7_2.gemfile} +2 -2
  13. data/lib/active_manageable/authorization/cancancan.rb +10 -12
  14. data/lib/active_manageable/authorization/pundit.rb +10 -12
  15. data/lib/active_manageable/base.rb +16 -5
  16. data/lib/active_manageable/configuration.rb +16 -7
  17. data/lib/active_manageable/methods/auxiliary/includes.rb +28 -30
  18. data/lib/active_manageable/methods/auxiliary/model_attributes.rb +15 -17
  19. data/lib/active_manageable/methods/auxiliary/order.rb +12 -14
  20. data/lib/active_manageable/methods/auxiliary/scopes.rb +35 -28
  21. data/lib/active_manageable/methods/auxiliary/select.rb +11 -13
  22. data/lib/active_manageable/methods/auxiliary/unique_search.rb +19 -19
  23. data/lib/active_manageable/methods/create.rb +20 -5
  24. data/lib/active_manageable/methods/destroy.rb +22 -7
  25. data/lib/active_manageable/methods/edit.rb +17 -9
  26. data/lib/active_manageable/methods/index.rb +28 -26
  27. data/lib/active_manageable/methods/new.rb +14 -6
  28. data/lib/active_manageable/methods/show.rb +17 -9
  29. data/lib/active_manageable/methods/update.rb +28 -7
  30. data/lib/active_manageable/pagination/kaminari.rb +29 -9
  31. data/lib/active_manageable/search/ransack.rb +15 -17
  32. data/lib/active_manageable/version.rb +1 -1
  33. metadata +36 -28
  34. data/.rubocop_rails.yml +0 -201
  35. data/.rubocop_rspec.yml +0 -68
  36. data/.standard.yml +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8645a9930ecc8e01e70b9a98c188c832ffe543b0599d9e819f640cc64d6d88fd
4
- data.tar.gz: 8354ce84a33378e123b3a299c1e6db2218b1f9611898275340ea003a2cae608e
3
+ metadata.gz: 1e8924b12e5d39614a69f6a379c3adeab0c807cf3b744b8bf85d71e4c7d63eb2
4
+ data.tar.gz: 3a392f5c53de2a9bd312cc4fc764adab45bc83919a61ebdecb60a99fdcfb7794
5
5
  SHA512:
6
- metadata.gz: 2334299accc2984ac5e590b3dd9d253b67188302ef4d86688a56cc8c6f29a5b893ac29076a00d871bf3dd87c0e3e1067c317d799ec4adfc356fe231bd86ebaad
7
- data.tar.gz: 3dc07fc9f551910ce7250f44901222ffffb04b0183b163fcc23067c574a50132703b43aab3df1fcc5347b077039a64f39f7e3b444a8064b6687db109eda6bb87
6
+ metadata.gz: bdc4aab9ce97595eb76c25e7fb7bdd777d0310b7161855046b7240fd36066d3adb5bad77a69fe0d552546862544133895e8aa642ca5b16f2e835affd32e80824
7
+ data.tar.gz: 9babc1cbafc079eaac9520b3ac25ad5a4eece500ec1770b01a730307475309ef50242a89e953147f5bb182ab891159bb10f4c39f953a0e330ae07d36dd227f86
@@ -17,23 +17,35 @@ jobs:
17
17
  strategy:
18
18
  fail-fast: false # should GitHub cancel all in-progress jobs if any matrix job fails
19
19
  matrix:
20
- ruby-version: ['2.7']
21
- gemfile: ['rails_6_0']
20
+ ruby-version: ['3.0']
21
+ gemfile: ['rails_7_0']
22
22
  include:
23
- - ruby-version: '2.7'
24
- gemfile: 'rails_6_1'
25
- - ruby-version: '2.7'
26
- gemfile: 'rails_7_0'
27
- - ruby-version: '3.0'
28
- gemfile: 'rails_6_0'
29
- - ruby-version: '3.0'
30
- gemfile: 'rails_6_1'
31
23
  - ruby-version: '3.0'
24
+ gemfile: 'rails_7_1'
25
+ - ruby-version: '3.1'
32
26
  gemfile: 'rails_7_0'
33
27
  - ruby-version: '3.1'
34
- gemfile: 'rails_6_1'
28
+ gemfile: 'rails_7_1'
35
29
  - ruby-version: '3.1'
30
+ gemfile: 'rails_7_2'
31
+ - ruby-version: '3.2'
32
+ gemfile: 'rails_7_0'
33
+ - ruby-version: '3.2'
34
+ gemfile: 'rails_7_1'
35
+ - ruby-version: '3.2'
36
+ gemfile: 'rails_7_2'
37
+ - ruby-version: '3.3'
38
+ gemfile: 'rails_7_0'
39
+ - ruby-version: '3.3'
40
+ gemfile: 'rails_7_1'
41
+ - ruby-version: '3.3'
42
+ gemfile: 'rails_7_2'
43
+ - ruby-version: '3.4'
36
44
  gemfile: 'rails_7_0'
45
+ - ruby-version: '3.4'
46
+ gemfile: 'rails_7_1'
47
+ - ruby-version: '3.4'
48
+ gemfile: 'rails_7_2'
37
49
 
38
50
  env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
39
51
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
data/.gitignore CHANGED
@@ -11,7 +11,7 @@
11
11
  .rspec_status
12
12
 
13
13
  # dummy application
14
- /spec/dummy/db/*.sqlite3
14
+ /spec/dummy/db/*.sqlite3*
15
15
  /spec/dummy/log/*.log
16
16
  /spec/dummy/storage/
17
17
  /spec/dummy/tmp/
data/.rubocop.yml CHANGED
@@ -1,9 +1,7 @@
1
- # .rubocop.yml
2
-
3
- # Based article from Evil Martians
4
- # https://evilmartians.com/chronicles/rubocoping-with-legacy-bring-your-ruby-code-up-to-standard
5
- # referenced in standard readme relating to use of Standard with Rubocop extensions
6
- # https://github.com/testdouble/standard
1
+ # Inherit Standard's configuration
2
+ inherit_gem:
3
+ standard: config/base.yml
4
+ standard-rails: config/base.yml
7
5
 
8
6
  # We want Exclude directives from different
9
7
  # config files to get merged, not overwritten
@@ -11,23 +9,13 @@ inherit_mode:
11
9
  merge:
12
10
  - Exclude
13
11
 
14
- require:
15
- # Performance cops are bundled with Standard
12
+ plugins:
13
+ - rubocop-rails
16
14
  - rubocop-performance
17
- # Standard's config uses this custom cop,
18
- # so it must be loaded
19
- - standard/cop/block_single_line_braces
20
-
21
- inherit_gem:
22
- standard: config/base.yml
23
-
24
- inherit_from:
25
- - .rubocop_rails.yml
26
- - .rubocop_rspec.yml
27
15
 
28
16
  AllCops:
29
17
  NewCops: enable
30
- TargetRubyVersion: 2.7
18
+ TargetRubyVersion: 3.4.5
31
19
  Exclude:
32
20
  - "spec/dummy/config/*"
33
21
  - "spec/dummy/config/environments/*"
@@ -40,3 +28,8 @@ Style/ClassEqualityComparison:
40
28
  Enabled: true
41
29
  Exclude:
42
30
  - "lib/active_manageable/base.rb"
31
+
32
+ Style/RedundantParentheses:
33
+ Enabled: true
34
+ Exclude:
35
+ - "lib/active_manageable/methods/auxiliary/model_attributes.rb"
data/Appraisals CHANGED
@@ -10,18 +10,27 @@
10
10
  #
11
11
  # Run each appraisal in turn or a single appraisal:-
12
12
  # $ bundle exec appraisal rspec
13
- # $ bundle exec appraisal rails-6-1 rspec
14
- appraise "rails-7-0" do
15
- gem "activerecord", "~> 7.0"
16
- gem "activesupport", "~> 7.0"
13
+ # $ bundle exec appraisal rails-7-2 rspec
14
+ appraise "rails-7-2" do
15
+ gem "activerecord", "~> 7.2.0"
16
+ gem "activesupport", "~> 7.2.0"
17
17
  end
18
18
 
19
- appraise "rails-6-1" do
20
- gem "activerecord", "~> 6.1"
21
- gem "activesupport", "~> 6.1"
19
+ appraise "rails-7-1" do
20
+ gem "activerecord", "~> 7.1.0"
21
+ gem "activesupport", "~> 7.1.0"
22
22
  end
23
23
 
24
- appraise "rails-6-0" do
25
- gem "activerecord", "~> 6.0.1"
26
- gem "activesupport", "~> 6.0.1"
24
+ appraise "rails-7-0" do
25
+ gem "activerecord", "~> 7.0.0"
26
+ gem "activesupport", "~> 7.0.0"
27
+ gem "sqlite3", "~> 1.4"
28
+ # cater for gems not shipped as default with Ruby 3.4
29
+ # but required by ActiveSupport
30
+ gem "logger"
31
+ gem "base64"
32
+ gem "bigdecimal"
33
+ gem "mutex_m"
34
+ gem "drb"
35
+ gem "benchmark"
27
36
  end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.3.0 - 2025-08-28
4
+
5
+ * Add support and test coverage for all minor versions of Rails 7 and Ruby 3
6
+ * Drop support for Rails 6 and Ruby 2.7
7
+ * Use base_label in calling_method method for Ruby 3.4.x compatibility
8
+
9
+ ## 0.2.0 - 2022-09-27
10
+
11
+ * Allow the configuration library options to accept a module
12
+ * Add `action_scope` method that can be overridden in order to retrieve and maintain records using a scope
13
+ * Rename `scoped_class` method to `authorization_scope`
14
+ * Move instance method definitions out of the ActiveSupport::Concern included block so that they can be overridden
15
+ * Split action methods into smaller overridable methods
16
+ * Add a yield to each of the action methods
17
+ * Perform yield and object create, update & destroy within a transaction
18
+ * Add public instance methods to return the default options
19
+ * When using the Kaminari library provide the ability to use the `without_count` mode to create a paginatable collection without counting the total number of records; either via the index method options or a class option or configuration option
20
+
3
21
  ## 0.1.2 - 2022-08-25
4
22
 
5
23
  * Upgrade gems including activerecord, actionpack, actionview, nokogiri & rack to resolve security advisory alerts
data/Gemfile.lock CHANGED
@@ -1,59 +1,84 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_manageable (0.1.2)
5
- activerecord (>= 6.0)
6
- activesupport (>= 6.0)
4
+ active_manageable (0.3.0)
5
+ activerecord (>= 7.0)
6
+ activesupport (>= 7.0)
7
7
  flexitime (~> 1.0)
8
8
  rails-i18n
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionpack (7.0.3.1)
14
- actionview (= 7.0.3.1)
15
- activesupport (= 7.0.3.1)
16
- rack (~> 2.0, >= 2.2.0)
13
+ actionpack (7.2.2.2)
14
+ actionview (= 7.2.2.2)
15
+ activesupport (= 7.2.2.2)
16
+ nokogiri (>= 1.8.5)
17
+ racc
18
+ rack (>= 2.2.4, < 3.2)
19
+ rack-session (>= 1.0.1)
17
20
  rack-test (>= 0.6.3)
18
- rails-dom-testing (~> 2.0)
19
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
20
- actionview (7.0.3.1)
21
- activesupport (= 7.0.3.1)
21
+ rails-dom-testing (~> 2.2)
22
+ rails-html-sanitizer (~> 1.6)
23
+ useragent (~> 0.16)
24
+ actionview (7.2.2.2)
25
+ activesupport (= 7.2.2.2)
22
26
  builder (~> 3.1)
23
- erubi (~> 1.4)
24
- rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
26
- activemodel (7.0.3.1)
27
- activesupport (= 7.0.3.1)
28
- activerecord (7.0.3.1)
29
- activemodel (= 7.0.3.1)
30
- activesupport (= 7.0.3.1)
31
- activesupport (7.0.3.1)
32
- concurrent-ruby (~> 1.0, >= 1.0.2)
27
+ erubi (~> 1.11)
28
+ rails-dom-testing (~> 2.2)
29
+ rails-html-sanitizer (~> 1.6)
30
+ activemodel (7.2.2.2)
31
+ activesupport (= 7.2.2.2)
32
+ activerecord (7.2.2.2)
33
+ activemodel (= 7.2.2.2)
34
+ activesupport (= 7.2.2.2)
35
+ timeout (>= 0.4.0)
36
+ activesupport (7.2.2.2)
37
+ base64
38
+ benchmark (>= 0.3)
39
+ bigdecimal
40
+ concurrent-ruby (~> 1.0, >= 1.3.1)
41
+ connection_pool (>= 2.2.5)
42
+ drb
33
43
  i18n (>= 1.6, < 2)
44
+ logger (>= 1.4.2)
34
45
  minitest (>= 5.1)
35
- tzinfo (~> 2.0)
36
- appraisal (2.4.1)
46
+ securerandom (>= 0.3)
47
+ tzinfo (~> 2.0, >= 2.0.5)
48
+ appraisal (2.5.0)
37
49
  bundler
38
50
  rake
39
51
  thor (>= 0.14.0)
40
- ast (2.4.2)
41
- builder (3.2.4)
42
- cancancan (3.4.0)
43
- concurrent-ruby (1.1.10)
52
+ ast (2.4.3)
53
+ base64 (0.3.0)
54
+ benchmark (0.4.1)
55
+ bigdecimal (3.2.2)
56
+ builder (3.3.0)
57
+ cancancan (3.6.1)
58
+ concurrent-ruby (1.3.5)
59
+ connection_pool (2.5.3)
44
60
  crass (1.0.6)
45
- diff-lcs (1.5.0)
46
- docile (1.4.0)
47
- erubi (1.11.0)
48
- factory_bot (6.2.1)
49
- activesupport (>= 5.0.0)
50
- factory_bot_rails (6.2.0)
51
- factory_bot (~> 6.2.0)
52
- railties (>= 5.0.0)
61
+ date (3.4.1)
62
+ diff-lcs (1.6.2)
63
+ docile (1.4.1)
64
+ drb (2.2.3)
65
+ erb (5.0.2)
66
+ erubi (1.13.1)
67
+ factory_bot (6.5.5)
68
+ activesupport (>= 6.1.0)
69
+ factory_bot_rails (6.5.0)
70
+ factory_bot (~> 6.5)
71
+ railties (>= 6.1.0)
53
72
  flexitime (1.0.0)
54
73
  activesupport (>= 4.0)
55
- i18n (1.12.0)
74
+ i18n (1.14.7)
56
75
  concurrent-ruby (~> 1.0)
76
+ io-console (0.8.1)
77
+ irb (1.15.2)
78
+ pp (>= 0.6.0)
79
+ rdoc (>= 4.0.0)
80
+ reline (>= 0.4.2)
81
+ json (2.13.2)
57
82
  kaminari (1.2.2)
58
83
  activesupport (>= 4.1.0)
59
84
  kaminari-actionview (= 1.2.2)
@@ -66,109 +91,154 @@ GEM
66
91
  activerecord
67
92
  kaminari-core (= 1.2.2)
68
93
  kaminari-core (1.2.2)
69
- loofah (2.18.0)
94
+ language_server-protocol (3.17.0.5)
95
+ lint_roller (1.1.0)
96
+ logger (1.7.0)
97
+ loofah (2.24.1)
70
98
  crass (~> 1.0.2)
71
- nokogiri (>= 1.5.9)
72
- method_source (1.0.0)
73
- minitest (5.16.3)
74
- nokogiri (1.13.8-arm64-darwin)
99
+ nokogiri (>= 1.12.0)
100
+ minitest (5.25.5)
101
+ nokogiri (1.18.9-arm64-darwin)
75
102
  racc (~> 1.4)
76
- nokogiri (1.13.8-x86_64-linux)
103
+ nokogiri (1.18.9-x86_64-linux-gnu)
77
104
  racc (~> 1.4)
78
- parallel (1.22.1)
79
- parser (3.1.2.1)
105
+ parallel (1.27.0)
106
+ parser (3.3.9.0)
80
107
  ast (~> 2.4.1)
81
- pundit (2.2.0)
108
+ racc
109
+ pp (0.6.2)
110
+ prettyprint
111
+ prettyprint (0.2.0)
112
+ prism (1.4.0)
113
+ psych (5.2.6)
114
+ date
115
+ stringio
116
+ pundit (2.5.0)
82
117
  activesupport (>= 3.0.0)
83
- racc (1.6.0)
84
- rack (2.2.4)
85
- rack-test (2.0.2)
118
+ racc (1.8.1)
119
+ rack (3.1.16)
120
+ rack-session (2.1.1)
121
+ base64 (>= 0.1.0)
122
+ rack (>= 3.0.0)
123
+ rack-test (2.2.0)
86
124
  rack (>= 1.3)
125
+ rackup (2.2.1)
126
+ rack (>= 3)
87
127
  rails-controller-testing (1.0.5)
88
128
  actionpack (>= 5.0.1.rc1)
89
129
  actionview (>= 5.0.1.rc1)
90
130
  activesupport (>= 5.0.1.rc1)
91
- rails-dom-testing (2.0.3)
92
- activesupport (>= 4.2.0)
131
+ rails-dom-testing (2.3.0)
132
+ activesupport (>= 5.0.0)
133
+ minitest
93
134
  nokogiri (>= 1.6)
94
- rails-html-sanitizer (1.4.3)
95
- loofah (~> 2.3)
96
- rails-i18n (7.0.5)
135
+ rails-html-sanitizer (1.6.2)
136
+ loofah (~> 2.21)
137
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
138
+ rails-i18n (7.0.10)
97
139
  i18n (>= 0.7, < 2)
98
140
  railties (>= 6.0.0, < 8)
99
- railties (7.0.3.1)
100
- actionpack (= 7.0.3.1)
101
- activesupport (= 7.0.3.1)
102
- method_source
141
+ railties (7.2.2.2)
142
+ actionpack (= 7.2.2.2)
143
+ activesupport (= 7.2.2.2)
144
+ irb (~> 1.13)
145
+ rackup (>= 1.0.0)
103
146
  rake (>= 12.2)
104
- thor (~> 1.0)
105
- zeitwerk (~> 2.5)
147
+ thor (~> 1.0, >= 1.2.2)
148
+ zeitwerk (~> 2.6)
106
149
  rainbow (3.1.1)
107
- rake (13.0.6)
108
- ransack (3.2.1)
150
+ rake (13.3.0)
151
+ ransack (4.3.0)
109
152
  activerecord (>= 6.1.5)
110
153
  activesupport (>= 6.1.5)
111
154
  i18n
112
- regexp_parser (2.5.0)
113
- rexml (3.2.5)
114
- rspec-core (3.11.0)
115
- rspec-support (~> 3.11.0)
116
- rspec-expectations (3.11.0)
155
+ rdoc (6.14.2)
156
+ erb
157
+ psych (>= 4.0.0)
158
+ regexp_parser (2.11.2)
159
+ reline (0.6.2)
160
+ io-console (~> 0.5)
161
+ rspec-core (3.13.5)
162
+ rspec-support (~> 3.13.0)
163
+ rspec-expectations (3.13.5)
117
164
  diff-lcs (>= 1.2.0, < 2.0)
118
- rspec-support (~> 3.11.0)
119
- rspec-mocks (3.11.1)
165
+ rspec-support (~> 3.13.0)
166
+ rspec-mocks (3.13.5)
120
167
  diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.11.0)
122
- rspec-rails (5.1.2)
123
- actionpack (>= 5.2)
124
- activesupport (>= 5.2)
125
- railties (>= 5.2)
126
- rspec-core (~> 3.10)
127
- rspec-expectations (~> 3.10)
128
- rspec-mocks (~> 3.10)
129
- rspec-support (~> 3.10)
130
- rspec-support (3.11.0)
131
- rubocop (1.23.0)
168
+ rspec-support (~> 3.13.0)
169
+ rspec-rails (8.0.2)
170
+ actionpack (>= 7.2)
171
+ activesupport (>= 7.2)
172
+ railties (>= 7.2)
173
+ rspec-core (~> 3.13)
174
+ rspec-expectations (~> 3.13)
175
+ rspec-mocks (~> 3.13)
176
+ rspec-support (~> 3.13)
177
+ rspec-support (3.13.5)
178
+ rubocop (1.75.8)
179
+ json (~> 2.3)
180
+ language_server-protocol (~> 3.17.0.2)
181
+ lint_roller (~> 1.1.0)
132
182
  parallel (~> 1.10)
133
- parser (>= 3.0.0.0)
183
+ parser (>= 3.3.0.2)
134
184
  rainbow (>= 2.2.2, < 4.0)
135
- regexp_parser (>= 1.8, < 3.0)
136
- rexml
137
- rubocop-ast (>= 1.12.0, < 2.0)
185
+ regexp_parser (>= 2.9.3, < 3.0)
186
+ rubocop-ast (>= 1.44.0, < 2.0)
138
187
  ruby-progressbar (~> 1.7)
139
- unicode-display_width (>= 1.4.0, < 3.0)
140
- rubocop-ast (1.21.0)
141
- parser (>= 3.1.1.0)
142
- rubocop-performance (1.12.0)
143
- rubocop (>= 1.7.0, < 2.0)
144
- rubocop-ast (>= 0.4.0)
145
- rubocop-rails (2.15.2)
188
+ unicode-display_width (>= 2.4.0, < 4.0)
189
+ rubocop-ast (1.46.0)
190
+ parser (>= 3.3.7.2)
191
+ prism (~> 1.4)
192
+ rubocop-performance (1.25.0)
193
+ lint_roller (~> 1.1)
194
+ rubocop (>= 1.75.0, < 2.0)
195
+ rubocop-ast (>= 1.38.0, < 2.0)
196
+ rubocop-rails (2.31.0)
146
197
  activesupport (>= 4.2.0)
198
+ lint_roller (~> 1.1)
147
199
  rack (>= 1.1)
148
- rubocop (>= 1.7.0, < 2.0)
200
+ rubocop (>= 1.75.0, < 2.0)
201
+ rubocop-ast (>= 1.38.0, < 2.0)
149
202
  rubocop-rspec (2.11.1)
150
203
  rubocop (~> 1.19)
151
- ruby-progressbar (1.11.0)
152
- shoulda-matchers (5.1.0)
204
+ ruby-progressbar (1.13.0)
205
+ securerandom (0.4.1)
206
+ shoulda-matchers (6.5.0)
153
207
  activesupport (>= 5.2.0)
154
- simplecov (0.21.2)
208
+ simplecov (0.22.0)
155
209
  docile (~> 1.1)
156
210
  simplecov-html (~> 0.11)
157
211
  simplecov_json_formatter (~> 0.1)
158
- simplecov-html (0.12.3)
212
+ simplecov-html (0.13.2)
159
213
  simplecov_json_formatter (0.1.4)
160
- sqlite3 (1.4.4)
161
- standard (1.5.0)
162
- rubocop (= 1.23.0)
163
- rubocop-performance (= 1.12.0)
164
- thor (1.2.1)
165
- tzinfo (2.0.5)
214
+ sqlite3 (2.7.3-arm64-darwin)
215
+ sqlite3 (2.7.3-x86_64-linux-gnu)
216
+ standard (1.50.0)
217
+ language_server-protocol (~> 3.17.0.2)
218
+ lint_roller (~> 1.0)
219
+ rubocop (~> 1.75.5)
220
+ standard-custom (~> 1.0.0)
221
+ standard-performance (~> 1.8)
222
+ standard-custom (1.0.2)
223
+ lint_roller (~> 1.0)
224
+ rubocop (~> 1.50)
225
+ standard-performance (1.8.0)
226
+ lint_roller (~> 1.1)
227
+ rubocop-performance (~> 1.25.0)
228
+ standard-rails (1.4.0)
229
+ lint_roller (~> 1.0)
230
+ rubocop-rails (~> 2.31.0)
231
+ stringio (3.1.7)
232
+ thor (1.4.0)
233
+ timeout (0.4.3)
234
+ tzinfo (2.0.6)
166
235
  concurrent-ruby (~> 1.0)
167
- unicode-display_width (2.2.0)
168
- zeitwerk (2.6.0)
236
+ unicode-display_width (2.6.0)
237
+ useragent (0.16.11)
238
+ zeitwerk (2.7.3)
169
239
 
170
240
  PLATFORMS
171
- arm64-darwin-21
241
+ arm64-darwin-24
172
242
  x86_64-linux
173
243
 
174
244
  DEPENDENCIES
@@ -179,16 +249,17 @@ DEPENDENCIES
179
249
  kaminari
180
250
  pundit
181
251
  rails-controller-testing
182
- rake (~> 13.0)
252
+ rake
183
253
  ransack
184
254
  rspec-rails
185
- rubocop (= 1.23.0)
255
+ rubocop
186
256
  rubocop-rails
187
257
  rubocop-rspec
188
258
  shoulda-matchers
189
259
  simplecov
190
- sqlite3 (~> 1.4.0)
260
+ sqlite3
191
261
  standard
262
+ standard-rails
192
263
 
193
264
  BUNDLED WITH
194
- 2.2.22
265
+ 2.7.1