human_enum 1.1.2 → 1.1.3

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: 70901ad863143ed0cd282bd80410c8f6d3748ce7d82e049e2b03327866e20903
4
- data.tar.gz: 9d8b0ca4db806f2dad9a512492083cfcb59e105ae715b6aa2b4df81466da9e2d
3
+ metadata.gz: 447c8acf7eb456e8f4814338cb7e3364a0d4d5b79739a9994ccc1e5b79862cba
4
+ data.tar.gz: dc002118fda492890ad261a6b1c613c407ecfa4f476f82c026453ba00d1e1acd
5
5
  SHA512:
6
- metadata.gz: 690fa84f0b397789f0e93e2ef6fa532da7c96423d1b5afa8713043829ce5c9c6f688c296036e37d63a8587857f885a564f7c1f97cd0f9e03b6137ffe0823940f
7
- data.tar.gz: 9cbc3d72af9091c9598b796e1f4e78e2baa81d5a6f2eb0b01ceeebdd9ed79db0e132e6d3beb4a04a8983b2dec5e2544e295e23611b0329c6e6695a645454c329
6
+ metadata.gz: 9080b9d079602d47e5265b04255aa878a930b746fdb2c14b42c6aeb029b866253b3ea8002f38353190efb13ce1d698d29c66dd416ba85c3dadd8ed1ffa1bdc3c
7
+ data.tar.gz: c173518fc6f16b5694481b5e6b1c2cdf3f980b9878a0af26fdb478b88acd58e1e2c1f667d3d69abcc65fe951cf64cc4f26ec0e68ed8fa1dc4908d7610d14a4d2
@@ -45,9 +45,13 @@ jobs:
45
45
  runs-on: ubuntu-latest
46
46
 
47
47
  strategy:
48
+ fail-fast: false
48
49
  matrix:
49
50
  ruby: ['3.1', '3.2', '3.3']
50
- rails: ['6.1', '7.0', '7.1']
51
+ rails: ['6.1', '7.0', '7.1', '7.2', '8.0']
52
+ exclude:
53
+ - ruby: 3.1
54
+ rails: 8.0
51
55
 
52
56
  env:
53
57
  BUNDLE_LOCKFILE: rails-${{ matrix.rails }}
data/Gemfile CHANGED
@@ -10,25 +10,36 @@ return unless Plugin.installed?('bundler-multilock')
10
10
  Plugin.send(:load_plugin, 'bundler-multilock')
11
11
 
12
12
  lockfile do
13
- gem 'activerecord', '~> 7.1'
13
+ gem 'activerecord', '~> 8.0'
14
+ gem 'sqlite3', '~> 2.0'
14
15
  end
15
16
 
16
17
  lockfile 'rails-6.1' do
17
18
  gem 'activerecord', '~> 6.1.0' # rubocop:disable Bundler/DuplicatedGem
19
+ gem 'sqlite3', '~> 1.4' # rubocop:disable Bundler/DuplicatedGem
18
20
  end
19
21
 
20
22
  lockfile 'rails-7.0' do
21
23
  gem 'activerecord', '~> 7.0.0' # rubocop:disable Bundler/DuplicatedGem
24
+ gem 'sqlite3', '~> 1.4' # rubocop:disable Bundler/DuplicatedGem
22
25
  end
23
26
 
24
27
  lockfile 'rails-7.1' do
25
28
  gem 'activerecord', '~> 7.1.0' # rubocop:disable Bundler/DuplicatedGem
29
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
26
30
  end
27
31
 
28
- gem 'rake', '~> 13.0'
32
+ lockfile 'rails-7.2' do
33
+ gem 'activerecord', '~> 7.2.0' # rubocop:disable Bundler/DuplicatedGem
34
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
35
+ end
29
36
 
30
- gem 'sqlite3', '~> 1.4'
37
+ lockfile 'rails-8.0' do
38
+ gem 'activerecord', '~> 8.0.0' # rubocop:disable Bundler/DuplicatedGem
39
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
40
+ end
31
41
 
42
+ gem 'rake', '~> 13.0'
32
43
  gem 'rspec', '~> 3.12'
33
44
 
34
45
  # Should match the version in .codeclimate.yml
data/Gemfile.lock CHANGED
@@ -1,50 +1,56 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (7.1.4.2)
11
- activesupport (= 7.1.4.2)
12
- activerecord (7.1.4.2)
13
- activemodel (= 7.1.4.2)
14
- activesupport (= 7.1.4.2)
10
+ activemodel (8.0.2)
11
+ activesupport (= 8.0.2)
12
+ activerecord (8.0.2)
13
+ activemodel (= 8.0.2)
14
+ activesupport (= 8.0.2)
15
15
  timeout (>= 0.4.0)
16
- activesupport (7.1.4.2)
16
+ activesupport (8.0.2)
17
17
  base64
18
+ benchmark (>= 0.3)
18
19
  bigdecimal
19
- concurrent-ruby (~> 1.0, >= 1.0.2)
20
+ concurrent-ruby (~> 1.0, >= 1.3.1)
20
21
  connection_pool (>= 2.2.5)
21
22
  drb
22
23
  i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
23
25
  minitest (>= 5.1)
24
- mutex_m
25
- tzinfo (~> 2.0)
26
+ securerandom (>= 0.3)
27
+ tzinfo (~> 2.0, >= 2.0.5)
28
+ uri (>= 0.13.1)
26
29
  ast (2.4.2)
27
30
  base64 (0.1.2)
31
+ benchmark (0.4.0)
28
32
  bigdecimal (3.1.8)
29
33
  coderay (1.1.3)
30
34
  concurrent-ruby (1.3.4)
31
35
  connection_pool (2.4.1)
32
- diff-lcs (1.5.1)
36
+ diff-lcs (1.6.0)
33
37
  docile (1.4.1)
34
38
  drb (2.2.1)
35
- ffi (1.17.0-aarch64-linux-gnu)
36
- ffi (1.17.0-arm-linux-gnu)
37
- ffi (1.17.0-arm64-darwin)
38
- ffi (1.17.0-x86-linux-gnu)
39
- ffi (1.17.0-x86_64-darwin)
40
- ffi (1.17.0-x86_64-linux-gnu)
39
+ ffi (1.17.1-aarch64-linux-gnu)
40
+ ffi (1.17.1-arm-linux-gnu)
41
+ ffi (1.17.1-arm64-darwin)
42
+ ffi (1.17.1-x86-linux-gnu)
43
+ ffi (1.17.1-x86_64-darwin)
44
+ ffi (1.17.1-x86_64-linux-gnu)
41
45
  formatador (1.1.0)
42
- guard (2.19.0)
46
+ guard (2.19.1)
43
47
  formatador (>= 0.2.4)
44
48
  listen (>= 2.7, < 4.0)
49
+ logger (~> 1.6)
45
50
  lumberjack (>= 1.0.12, < 2.0)
46
51
  nenv (~> 0.1)
47
52
  notiffany (~> 0.0)
53
+ ostruct (~> 0.6)
48
54
  pry (>= 0.13.0)
49
55
  shellany (~> 0.0)
50
56
  thor (>= 0.18.1)
@@ -58,44 +64,44 @@ GEM
58
64
  rubocop (< 2.0)
59
65
  i18n (1.14.6)
60
66
  concurrent-ruby (~> 1.0)
61
- json (2.7.4)
62
- language_server-protocol (3.17.0.3)
67
+ json (2.10.2)
68
+ language_server-protocol (3.17.0.4)
63
69
  listen (3.9.0)
64
70
  rb-fsevent (~> 0.10, >= 0.10.3)
65
71
  rb-inotify (~> 0.9, >= 0.9.10)
66
- logger (1.6.1)
72
+ logger (1.6.3)
67
73
  lumberjack (1.2.10)
68
74
  method_source (1.1.0)
69
- minitest (5.25.1)
70
- mutex_m (0.2.0)
75
+ minitest (5.25.4)
71
76
  nenv (0.3.0)
72
77
  notiffany (0.1.3)
73
78
  nenv (~> 0.1)
74
79
  shellany (~> 0.0)
80
+ ostruct (0.6.1)
75
81
  parallel (1.26.3)
76
- parser (3.3.5.0)
82
+ parser (3.3.7.1)
77
83
  ast (~> 2.4.1)
78
84
  racc
79
- prism (1.2.0)
80
- pry (0.14.2)
85
+ prism (1.3.0)
86
+ pry (0.15.2)
81
87
  coderay (~> 1.1)
82
88
  method_source (~> 1.0)
83
89
  racc (1.8.1)
84
- rack (3.1.8)
90
+ rack (3.1.12)
85
91
  rainbow (3.1.1)
86
92
  rake (13.2.1)
87
93
  rb-fsevent (0.11.2)
88
94
  rb-inotify (0.11.1)
89
95
  ffi (~> 1.0)
90
- rbs (3.6.1)
96
+ rbs (3.8.1)
91
97
  logger
92
- regexp_parser (2.9.2)
93
- rexml (3.3.9)
98
+ regexp_parser (2.10.0)
99
+ rexml (3.4.1)
94
100
  rspec (3.13.0)
95
101
  rspec-core (~> 3.13.0)
96
102
  rspec-expectations (~> 3.13.0)
97
103
  rspec-mocks (~> 3.13.0)
98
- rspec-core (3.13.2)
104
+ rspec-core (3.13.3)
99
105
  rspec-support (~> 3.13.0)
100
106
  rspec-expectations (3.13.3)
101
107
  diff-lcs (>= 1.2.0, < 2.0)
@@ -103,7 +109,7 @@ GEM
103
109
  rspec-mocks (3.13.2)
104
110
  diff-lcs (>= 1.2.0, < 2.0)
105
111
  rspec-support (~> 3.13.0)
106
- rspec-support (3.13.1)
112
+ rspec-support (3.13.2)
107
113
  rubocop (1.56.4)
108
114
  base64 (~> 0.1.1)
109
115
  json (~> 2.3)
@@ -116,12 +122,12 @@ GEM
116
122
  rubocop-ast (>= 1.28.1, < 2.0)
117
123
  ruby-progressbar (~> 1.7)
118
124
  unicode-display_width (>= 2.4.0, < 3.0)
119
- rubocop-ast (1.32.3)
125
+ rubocop-ast (1.38.1)
120
126
  parser (>= 3.3.1.0)
121
- rubocop-performance (1.22.1)
127
+ rubocop-performance (1.23.1)
122
128
  rubocop (>= 1.48.1, < 2.0)
123
129
  rubocop-ast (>= 1.31.1, < 2.0)
124
- rubocop-rails (2.27.0)
130
+ rubocop-rails (2.29.1)
125
131
  activesupport (>= 4.2.0)
126
132
  rack (>= 1.1)
127
133
  rubocop (>= 1.52.0, < 2.0)
@@ -130,16 +136,17 @@ GEM
130
136
  rubocop (~> 1.0)
131
137
  rubocop-rspec (3.0.0)
132
138
  rubocop (~> 1.40)
133
- ruby-lsp (0.20.1)
139
+ ruby-lsp (0.23.11)
134
140
  language_server-protocol (~> 3.17.0)
135
141
  prism (>= 1.2, < 2.0)
136
142
  rbs (>= 3, < 4)
137
143
  sorbet-runtime (>= 0.5.10782)
138
- ruby-lsp-rails (0.3.21)
139
- ruby-lsp (>= 0.20.0, < 0.21.0)
140
- ruby-lsp-rspec (0.1.17)
141
- ruby-lsp (~> 0.20.1)
144
+ ruby-lsp-rails (0.4.0)
145
+ ruby-lsp (>= 0.23.0, < 0.24.0)
146
+ ruby-lsp-rspec (0.1.22)
147
+ ruby-lsp (~> 0.23.0)
142
148
  ruby-progressbar (1.13.0)
149
+ securerandom (0.4.0)
143
150
  shellany (0.0.1)
144
151
  simplecov (0.22.0)
145
152
  docile (~> 1.1)
@@ -147,18 +154,19 @@ GEM
147
154
  simplecov_json_formatter (~> 0.1)
148
155
  simplecov-html (0.13.1)
149
156
  simplecov_json_formatter (0.1.4)
150
- sorbet-runtime (0.5.11620)
151
- sqlite3 (1.7.3-aarch64-linux)
152
- sqlite3 (1.7.3-arm-linux)
153
- sqlite3 (1.7.3-arm64-darwin)
154
- sqlite3 (1.7.3-x86-linux)
155
- sqlite3 (1.7.3-x86_64-darwin)
156
- sqlite3 (1.7.3-x86_64-linux)
157
+ sorbet-runtime (0.5.11919)
158
+ sqlite3 (2.6.0-aarch64-linux-gnu)
159
+ sqlite3 (2.6.0-arm-linux-gnu)
160
+ sqlite3 (2.6.0-arm64-darwin)
161
+ sqlite3 (2.6.0-x86-linux-gnu)
162
+ sqlite3 (2.6.0-x86_64-darwin)
163
+ sqlite3 (2.6.0-x86_64-linux-gnu)
157
164
  thor (1.3.2)
158
- timeout (0.4.1)
165
+ timeout (0.4.3)
159
166
  tzinfo (2.0.6)
160
167
  concurrent-ruby (~> 1.0)
161
168
  unicode-display_width (2.6.0)
169
+ uri (1.0.3)
162
170
 
163
171
  PLATFORMS
164
172
  aarch64-linux
@@ -169,7 +177,7 @@ PLATFORMS
169
177
  x86_64-linux
170
178
 
171
179
  DEPENDENCIES
172
- activerecord (~> 7.1)
180
+ activerecord (~> 8.0)
173
181
  guard (~> 2.18)
174
182
  guard-rspec (~> 4.7)
175
183
  guard-rubocop (~> 1.5)
@@ -184,7 +192,7 @@ DEPENDENCIES
184
192
  ruby-lsp-rails
185
193
  ruby-lsp-rspec
186
194
  simplecov (~> 0.22.0)
187
- sqlite3 (~> 1.4)
195
+ sqlite3 (~> 2.0)
188
196
 
189
197
  BUNDLED WITH
190
198
  2.5.10
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (6.1.7.7)
11
- activesupport (= 6.1.7.7)
12
- activerecord (6.1.7.7)
13
- activemodel (= 6.1.7.7)
14
- activesupport (= 6.1.7.7)
15
- activesupport (6.1.7.7)
10
+ activemodel (6.1.7.10)
11
+ activesupport (= 6.1.7.10)
12
+ activerecord (6.1.7.10)
13
+ activemodel (= 6.1.7.10)
14
+ activesupport (= 6.1.7.10)
15
+ activesupport (6.1.7.10)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 1.6, < 2)
18
18
  minitest (>= 5.1)
@@ -22,16 +22,23 @@ GEM
22
22
  base64 (0.1.2)
23
23
  coderay (1.1.3)
24
24
  concurrent-ruby (1.3.4)
25
- diff-lcs (1.5.1)
25
+ diff-lcs (1.6.0)
26
26
  docile (1.4.1)
27
- ffi (1.16.3)
27
+ ffi (1.17.1-aarch64-linux-gnu)
28
+ ffi (1.17.1-arm-linux-gnu)
29
+ ffi (1.17.1-arm64-darwin)
30
+ ffi (1.17.1-x86-linux-gnu)
31
+ ffi (1.17.1-x86_64-darwin)
32
+ ffi (1.17.1-x86_64-linux-gnu)
28
33
  formatador (1.1.0)
29
- guard (2.19.0)
34
+ guard (2.19.1)
30
35
  formatador (>= 0.2.4)
31
36
  listen (>= 2.7, < 4.0)
37
+ logger (~> 1.6)
32
38
  lumberjack (>= 1.0.12, < 2.0)
33
39
  nenv (~> 0.1)
34
40
  notiffany (~> 0.0)
41
+ ostruct (~> 0.6)
35
42
  pry (>= 0.13.0)
36
43
  shellany (~> 0.0)
37
44
  thor (>= 0.18.1)
@@ -45,43 +52,44 @@ GEM
45
52
  rubocop (< 2.0)
46
53
  i18n (1.14.6)
47
54
  concurrent-ruby (~> 1.0)
48
- json (2.7.4)
49
- language_server-protocol (3.17.0.3)
55
+ json (2.10.2)
56
+ language_server-protocol (3.17.0.4)
50
57
  listen (3.9.0)
51
58
  rb-fsevent (~> 0.10, >= 0.10.3)
52
59
  rb-inotify (~> 0.9, >= 0.9.10)
53
- logger (1.6.1)
60
+ logger (1.6.3)
54
61
  lumberjack (1.2.10)
55
62
  method_source (1.1.0)
56
- minitest (5.25.1)
63
+ minitest (5.25.4)
57
64
  nenv (0.3.0)
58
65
  notiffany (0.1.3)
59
66
  nenv (~> 0.1)
60
67
  shellany (~> 0.0)
68
+ ostruct (0.6.1)
61
69
  parallel (1.26.3)
62
- parser (3.3.5.0)
70
+ parser (3.3.7.1)
63
71
  ast (~> 2.4.1)
64
72
  racc
65
- prism (1.2.0)
66
- pry (0.14.2)
73
+ prism (1.3.0)
74
+ pry (0.15.2)
67
75
  coderay (~> 1.1)
68
76
  method_source (~> 1.0)
69
77
  racc (1.8.1)
70
- rack (3.1.8)
78
+ rack (3.1.12)
71
79
  rainbow (3.1.1)
72
80
  rake (13.2.1)
73
81
  rb-fsevent (0.11.2)
74
82
  rb-inotify (0.11.1)
75
83
  ffi (~> 1.0)
76
- rbs (3.6.1)
84
+ rbs (3.8.1)
77
85
  logger
78
- regexp_parser (2.9.2)
79
- rexml (3.3.9)
86
+ regexp_parser (2.10.0)
87
+ rexml (3.4.1)
80
88
  rspec (3.13.0)
81
89
  rspec-core (~> 3.13.0)
82
90
  rspec-expectations (~> 3.13.0)
83
91
  rspec-mocks (~> 3.13.0)
84
- rspec-core (3.13.2)
92
+ rspec-core (3.13.3)
85
93
  rspec-support (~> 3.13.0)
86
94
  rspec-expectations (3.13.3)
87
95
  diff-lcs (>= 1.2.0, < 2.0)
@@ -89,7 +97,7 @@ GEM
89
97
  rspec-mocks (3.13.2)
90
98
  diff-lcs (>= 1.2.0, < 2.0)
91
99
  rspec-support (~> 3.13.0)
92
- rspec-support (3.13.1)
100
+ rspec-support (3.13.2)
93
101
  rubocop (1.56.4)
94
102
  base64 (~> 0.1.1)
95
103
  json (~> 2.3)
@@ -102,12 +110,12 @@ GEM
102
110
  rubocop-ast (>= 1.28.1, < 2.0)
103
111
  ruby-progressbar (~> 1.7)
104
112
  unicode-display_width (>= 2.4.0, < 3.0)
105
- rubocop-ast (1.32.3)
113
+ rubocop-ast (1.38.1)
106
114
  parser (>= 3.3.1.0)
107
- rubocop-performance (1.22.1)
115
+ rubocop-performance (1.23.1)
108
116
  rubocop (>= 1.48.1, < 2.0)
109
117
  rubocop-ast (>= 1.31.1, < 2.0)
110
- rubocop-rails (2.27.0)
118
+ rubocop-rails (2.29.1)
111
119
  activesupport (>= 4.2.0)
112
120
  rack (>= 1.1)
113
121
  rubocop (>= 1.52.0, < 2.0)
@@ -116,15 +124,15 @@ GEM
116
124
  rubocop (~> 1.0)
117
125
  rubocop-rspec (3.0.0)
118
126
  rubocop (~> 1.40)
119
- ruby-lsp (0.20.1)
127
+ ruby-lsp (0.23.11)
120
128
  language_server-protocol (~> 3.17.0)
121
129
  prism (>= 1.2, < 2.0)
122
130
  rbs (>= 3, < 4)
123
131
  sorbet-runtime (>= 0.5.10782)
124
- ruby-lsp-rails (0.3.21)
125
- ruby-lsp (>= 0.20.0, < 0.21.0)
126
- ruby-lsp-rspec (0.1.17)
127
- ruby-lsp (~> 0.20.1)
132
+ ruby-lsp-rails (0.4.0)
133
+ ruby-lsp (>= 0.23.0, < 0.24.0)
134
+ ruby-lsp-rspec (0.1.22)
135
+ ruby-lsp (~> 0.23.0)
128
136
  ruby-progressbar (1.13.0)
129
137
  shellany (0.0.1)
130
138
  simplecov (0.22.0)
@@ -133,7 +141,7 @@ GEM
133
141
  simplecov_json_formatter (~> 0.1)
134
142
  simplecov-html (0.13.1)
135
143
  simplecov_json_formatter (0.1.4)
136
- sorbet-runtime (0.5.11620)
144
+ sorbet-runtime (0.5.11919)
137
145
  sqlite3 (1.7.3-aarch64-linux)
138
146
  sqlite3 (1.7.3-arm-linux)
139
147
  sqlite3 (1.7.3-arm64-darwin)
@@ -144,7 +152,7 @@ GEM
144
152
  tzinfo (2.0.6)
145
153
  concurrent-ruby (~> 1.0)
146
154
  unicode-display_width (2.6.0)
147
- zeitwerk (2.6.14)
155
+ zeitwerk (2.6.18)
148
156
 
149
157
  PLATFORMS
150
158
  aarch64-linux
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (7.0.8.3)
11
- activesupport (= 7.0.8.3)
12
- activerecord (7.0.8.3)
13
- activemodel (= 7.0.8.3)
14
- activesupport (= 7.0.8.3)
15
- activesupport (7.0.8.3)
10
+ activemodel (7.0.8.7)
11
+ activesupport (= 7.0.8.7)
12
+ activerecord (7.0.8.7)
13
+ activemodel (= 7.0.8.7)
14
+ activesupport (= 7.0.8.7)
15
+ activesupport (7.0.8.7)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 1.6, < 2)
18
18
  minitest (>= 5.1)
@@ -21,16 +21,23 @@ GEM
21
21
  base64 (0.1.2)
22
22
  coderay (1.1.3)
23
23
  concurrent-ruby (1.3.4)
24
- diff-lcs (1.5.1)
24
+ diff-lcs (1.6.0)
25
25
  docile (1.4.1)
26
- ffi (1.16.3)
26
+ ffi (1.17.1-aarch64-linux-gnu)
27
+ ffi (1.17.1-arm-linux-gnu)
28
+ ffi (1.17.1-arm64-darwin)
29
+ ffi (1.17.1-x86-linux-gnu)
30
+ ffi (1.17.1-x86_64-darwin)
31
+ ffi (1.17.1-x86_64-linux-gnu)
27
32
  formatador (1.1.0)
28
- guard (2.19.0)
33
+ guard (2.19.1)
29
34
  formatador (>= 0.2.4)
30
35
  listen (>= 2.7, < 4.0)
36
+ logger (~> 1.6)
31
37
  lumberjack (>= 1.0.12, < 2.0)
32
38
  nenv (~> 0.1)
33
39
  notiffany (~> 0.0)
40
+ ostruct (~> 0.6)
34
41
  pry (>= 0.13.0)
35
42
  shellany (~> 0.0)
36
43
  thor (>= 0.18.1)
@@ -44,43 +51,44 @@ GEM
44
51
  rubocop (< 2.0)
45
52
  i18n (1.14.6)
46
53
  concurrent-ruby (~> 1.0)
47
- json (2.7.4)
48
- language_server-protocol (3.17.0.3)
54
+ json (2.10.2)
55
+ language_server-protocol (3.17.0.4)
49
56
  listen (3.9.0)
50
57
  rb-fsevent (~> 0.10, >= 0.10.3)
51
58
  rb-inotify (~> 0.9, >= 0.9.10)
52
- logger (1.6.1)
59
+ logger (1.6.3)
53
60
  lumberjack (1.2.10)
54
61
  method_source (1.1.0)
55
- minitest (5.25.1)
62
+ minitest (5.25.4)
56
63
  nenv (0.3.0)
57
64
  notiffany (0.1.3)
58
65
  nenv (~> 0.1)
59
66
  shellany (~> 0.0)
67
+ ostruct (0.6.1)
60
68
  parallel (1.26.3)
61
- parser (3.3.5.0)
69
+ parser (3.3.7.1)
62
70
  ast (~> 2.4.1)
63
71
  racc
64
- prism (1.2.0)
65
- pry (0.14.2)
72
+ prism (1.3.0)
73
+ pry (0.15.2)
66
74
  coderay (~> 1.1)
67
75
  method_source (~> 1.0)
68
76
  racc (1.8.1)
69
- rack (3.1.8)
77
+ rack (3.1.12)
70
78
  rainbow (3.1.1)
71
79
  rake (13.2.1)
72
80
  rb-fsevent (0.11.2)
73
81
  rb-inotify (0.11.1)
74
82
  ffi (~> 1.0)
75
- rbs (3.6.1)
83
+ rbs (3.8.1)
76
84
  logger
77
- regexp_parser (2.9.2)
78
- rexml (3.3.9)
85
+ regexp_parser (2.10.0)
86
+ rexml (3.4.1)
79
87
  rspec (3.13.0)
80
88
  rspec-core (~> 3.13.0)
81
89
  rspec-expectations (~> 3.13.0)
82
90
  rspec-mocks (~> 3.13.0)
83
- rspec-core (3.13.2)
91
+ rspec-core (3.13.3)
84
92
  rspec-support (~> 3.13.0)
85
93
  rspec-expectations (3.13.3)
86
94
  diff-lcs (>= 1.2.0, < 2.0)
@@ -88,7 +96,7 @@ GEM
88
96
  rspec-mocks (3.13.2)
89
97
  diff-lcs (>= 1.2.0, < 2.0)
90
98
  rspec-support (~> 3.13.0)
91
- rspec-support (3.13.1)
99
+ rspec-support (3.13.2)
92
100
  rubocop (1.56.4)
93
101
  base64 (~> 0.1.1)
94
102
  json (~> 2.3)
@@ -101,12 +109,12 @@ GEM
101
109
  rubocop-ast (>= 1.28.1, < 2.0)
102
110
  ruby-progressbar (~> 1.7)
103
111
  unicode-display_width (>= 2.4.0, < 3.0)
104
- rubocop-ast (1.32.3)
112
+ rubocop-ast (1.38.1)
105
113
  parser (>= 3.3.1.0)
106
- rubocop-performance (1.22.1)
114
+ rubocop-performance (1.23.1)
107
115
  rubocop (>= 1.48.1, < 2.0)
108
116
  rubocop-ast (>= 1.31.1, < 2.0)
109
- rubocop-rails (2.27.0)
117
+ rubocop-rails (2.29.1)
110
118
  activesupport (>= 4.2.0)
111
119
  rack (>= 1.1)
112
120
  rubocop (>= 1.52.0, < 2.0)
@@ -115,15 +123,15 @@ GEM
115
123
  rubocop (~> 1.0)
116
124
  rubocop-rspec (3.0.0)
117
125
  rubocop (~> 1.40)
118
- ruby-lsp (0.20.1)
126
+ ruby-lsp (0.23.11)
119
127
  language_server-protocol (~> 3.17.0)
120
128
  prism (>= 1.2, < 2.0)
121
129
  rbs (>= 3, < 4)
122
130
  sorbet-runtime (>= 0.5.10782)
123
- ruby-lsp-rails (0.3.21)
124
- ruby-lsp (>= 0.20.0, < 0.21.0)
125
- ruby-lsp-rspec (0.1.17)
126
- ruby-lsp (~> 0.20.1)
131
+ ruby-lsp-rails (0.4.0)
132
+ ruby-lsp (>= 0.23.0, < 0.24.0)
133
+ ruby-lsp-rspec (0.1.22)
134
+ ruby-lsp (~> 0.23.0)
127
135
  ruby-progressbar (1.13.0)
128
136
  shellany (0.0.1)
129
137
  simplecov (0.22.0)
@@ -132,7 +140,7 @@ GEM
132
140
  simplecov_json_formatter (~> 0.1)
133
141
  simplecov-html (0.13.1)
134
142
  simplecov_json_formatter (0.1.4)
135
- sorbet-runtime (0.5.11620)
143
+ sorbet-runtime (0.5.11919)
136
144
  sqlite3 (1.7.3-aarch64-linux)
137
145
  sqlite3 (1.7.3-arm-linux)
138
146
  sqlite3 (1.7.3-arm64-darwin)
@@ -1,45 +1,56 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (7.1.4.2)
11
- activesupport (= 7.1.4.2)
12
- activerecord (7.1.4.2)
13
- activemodel (= 7.1.4.2)
14
- activesupport (= 7.1.4.2)
10
+ activemodel (7.1.5.1)
11
+ activesupport (= 7.1.5.1)
12
+ activerecord (7.1.5.1)
13
+ activemodel (= 7.1.5.1)
14
+ activesupport (= 7.1.5.1)
15
15
  timeout (>= 0.4.0)
16
- activesupport (7.1.4.2)
16
+ activesupport (7.1.5.1)
17
17
  base64
18
+ benchmark (>= 0.3)
18
19
  bigdecimal
19
20
  concurrent-ruby (~> 1.0, >= 1.0.2)
20
21
  connection_pool (>= 2.2.5)
21
22
  drb
22
23
  i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
23
25
  minitest (>= 5.1)
24
26
  mutex_m
27
+ securerandom (>= 0.3)
25
28
  tzinfo (~> 2.0)
26
29
  ast (2.4.2)
27
30
  base64 (0.1.2)
31
+ benchmark (0.4.0)
28
32
  bigdecimal (3.1.8)
29
33
  coderay (1.1.3)
30
34
  concurrent-ruby (1.3.4)
31
35
  connection_pool (2.4.1)
32
- diff-lcs (1.5.1)
36
+ diff-lcs (1.6.0)
33
37
  docile (1.4.1)
34
38
  drb (2.2.1)
35
- ffi (1.16.3)
39
+ ffi (1.17.1-aarch64-linux-gnu)
40
+ ffi (1.17.1-arm-linux-gnu)
41
+ ffi (1.17.1-arm64-darwin)
42
+ ffi (1.17.1-x86-linux-gnu)
43
+ ffi (1.17.1-x86_64-darwin)
44
+ ffi (1.17.1-x86_64-linux-gnu)
36
45
  formatador (1.1.0)
37
- guard (2.19.0)
46
+ guard (2.19.1)
38
47
  formatador (>= 0.2.4)
39
48
  listen (>= 2.7, < 4.0)
49
+ logger (~> 1.6)
40
50
  lumberjack (>= 1.0.12, < 2.0)
41
51
  nenv (~> 0.1)
42
52
  notiffany (~> 0.0)
53
+ ostruct (~> 0.6)
43
54
  pry (>= 0.13.0)
44
55
  shellany (~> 0.0)
45
56
  thor (>= 0.18.1)
@@ -53,44 +64,45 @@ GEM
53
64
  rubocop (< 2.0)
54
65
  i18n (1.14.6)
55
66
  concurrent-ruby (~> 1.0)
56
- json (2.7.4)
57
- language_server-protocol (3.17.0.3)
67
+ json (2.10.2)
68
+ language_server-protocol (3.17.0.4)
58
69
  listen (3.9.0)
59
70
  rb-fsevent (~> 0.10, >= 0.10.3)
60
71
  rb-inotify (~> 0.9, >= 0.9.10)
61
- logger (1.6.1)
72
+ logger (1.6.3)
62
73
  lumberjack (1.2.10)
63
74
  method_source (1.1.0)
64
- minitest (5.25.1)
65
- mutex_m (0.2.0)
75
+ minitest (5.25.4)
76
+ mutex_m (0.3.0)
66
77
  nenv (0.3.0)
67
78
  notiffany (0.1.3)
68
79
  nenv (~> 0.1)
69
80
  shellany (~> 0.0)
81
+ ostruct (0.6.1)
70
82
  parallel (1.26.3)
71
- parser (3.3.5.0)
83
+ parser (3.3.7.1)
72
84
  ast (~> 2.4.1)
73
85
  racc
74
- prism (1.2.0)
75
- pry (0.14.2)
86
+ prism (1.3.0)
87
+ pry (0.15.2)
76
88
  coderay (~> 1.1)
77
89
  method_source (~> 1.0)
78
90
  racc (1.8.1)
79
- rack (3.1.8)
91
+ rack (3.1.12)
80
92
  rainbow (3.1.1)
81
93
  rake (13.2.1)
82
94
  rb-fsevent (0.11.2)
83
95
  rb-inotify (0.11.1)
84
96
  ffi (~> 1.0)
85
- rbs (3.6.1)
97
+ rbs (3.8.1)
86
98
  logger
87
- regexp_parser (2.9.2)
88
- rexml (3.3.9)
99
+ regexp_parser (2.10.0)
100
+ rexml (3.4.1)
89
101
  rspec (3.13.0)
90
102
  rspec-core (~> 3.13.0)
91
103
  rspec-expectations (~> 3.13.0)
92
104
  rspec-mocks (~> 3.13.0)
93
- rspec-core (3.13.2)
105
+ rspec-core (3.13.3)
94
106
  rspec-support (~> 3.13.0)
95
107
  rspec-expectations (3.13.3)
96
108
  diff-lcs (>= 1.2.0, < 2.0)
@@ -98,7 +110,7 @@ GEM
98
110
  rspec-mocks (3.13.2)
99
111
  diff-lcs (>= 1.2.0, < 2.0)
100
112
  rspec-support (~> 3.13.0)
101
- rspec-support (3.13.1)
113
+ rspec-support (3.13.2)
102
114
  rubocop (1.56.4)
103
115
  base64 (~> 0.1.1)
104
116
  json (~> 2.3)
@@ -111,12 +123,12 @@ GEM
111
123
  rubocop-ast (>= 1.28.1, < 2.0)
112
124
  ruby-progressbar (~> 1.7)
113
125
  unicode-display_width (>= 2.4.0, < 3.0)
114
- rubocop-ast (1.32.3)
126
+ rubocop-ast (1.38.1)
115
127
  parser (>= 3.3.1.0)
116
- rubocop-performance (1.22.1)
128
+ rubocop-performance (1.23.1)
117
129
  rubocop (>= 1.48.1, < 2.0)
118
130
  rubocop-ast (>= 1.31.1, < 2.0)
119
- rubocop-rails (2.27.0)
131
+ rubocop-rails (2.29.1)
120
132
  activesupport (>= 4.2.0)
121
133
  rack (>= 1.1)
122
134
  rubocop (>= 1.52.0, < 2.0)
@@ -125,16 +137,17 @@ GEM
125
137
  rubocop (~> 1.0)
126
138
  rubocop-rspec (3.0.0)
127
139
  rubocop (~> 1.40)
128
- ruby-lsp (0.20.1)
140
+ ruby-lsp (0.23.11)
129
141
  language_server-protocol (~> 3.17.0)
130
142
  prism (>= 1.2, < 2.0)
131
143
  rbs (>= 3, < 4)
132
144
  sorbet-runtime (>= 0.5.10782)
133
- ruby-lsp-rails (0.3.21)
134
- ruby-lsp (>= 0.20.0, < 0.21.0)
135
- ruby-lsp-rspec (0.1.17)
136
- ruby-lsp (~> 0.20.1)
145
+ ruby-lsp-rails (0.4.0)
146
+ ruby-lsp (>= 0.23.0, < 0.24.0)
147
+ ruby-lsp-rspec (0.1.22)
148
+ ruby-lsp (~> 0.23.0)
137
149
  ruby-progressbar (1.13.0)
150
+ securerandom (0.4.0)
138
151
  shellany (0.0.1)
139
152
  simplecov (0.22.0)
140
153
  docile (~> 1.1)
@@ -142,15 +155,15 @@ GEM
142
155
  simplecov_json_formatter (~> 0.1)
143
156
  simplecov-html (0.13.1)
144
157
  simplecov_json_formatter (0.1.4)
145
- sorbet-runtime (0.5.11620)
146
- sqlite3 (1.7.3-aarch64-linux)
147
- sqlite3 (1.7.3-arm-linux)
148
- sqlite3 (1.7.3-arm64-darwin)
149
- sqlite3 (1.7.3-x86-linux)
150
- sqlite3 (1.7.3-x86_64-darwin)
151
- sqlite3 (1.7.3-x86_64-linux)
158
+ sorbet-runtime (0.5.11919)
159
+ sqlite3 (2.6.0-aarch64-linux-gnu)
160
+ sqlite3 (2.6.0-arm-linux-gnu)
161
+ sqlite3 (2.6.0-arm64-darwin)
162
+ sqlite3 (2.6.0-x86-linux-gnu)
163
+ sqlite3 (2.6.0-x86_64-darwin)
164
+ sqlite3 (2.6.0-x86_64-linux-gnu)
152
165
  thor (1.3.2)
153
- timeout (0.4.1)
166
+ timeout (0.4.3)
154
167
  tzinfo (2.0.6)
155
168
  concurrent-ruby (~> 1.0)
156
169
  unicode-display_width (2.6.0)
@@ -179,7 +192,7 @@ DEPENDENCIES
179
192
  ruby-lsp-rails
180
193
  ruby-lsp-rspec
181
194
  simplecov (~> 0.22.0)
182
- sqlite3 (~> 1.4)
195
+ sqlite3 (~> 2.0)
183
196
 
184
197
  BUNDLED WITH
185
198
  2.5.10
@@ -0,0 +1,196 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (7.2.2.1)
11
+ activesupport (= 7.2.2.1)
12
+ activerecord (7.2.2.1)
13
+ activemodel (= 7.2.2.1)
14
+ activesupport (= 7.2.2.1)
15
+ timeout (>= 0.4.0)
16
+ activesupport (7.2.2.1)
17
+ base64
18
+ benchmark (>= 0.3)
19
+ bigdecimal
20
+ concurrent-ruby (~> 1.0, >= 1.3.1)
21
+ connection_pool (>= 2.2.5)
22
+ drb
23
+ i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
25
+ minitest (>= 5.1)
26
+ securerandom (>= 0.3)
27
+ tzinfo (~> 2.0, >= 2.0.5)
28
+ ast (2.4.2)
29
+ base64 (0.1.2)
30
+ benchmark (0.4.0)
31
+ bigdecimal (3.1.8)
32
+ coderay (1.1.3)
33
+ concurrent-ruby (1.3.4)
34
+ connection_pool (2.4.1)
35
+ diff-lcs (1.6.0)
36
+ docile (1.4.1)
37
+ drb (2.2.1)
38
+ ffi (1.17.1-aarch64-linux-gnu)
39
+ ffi (1.17.1-arm-linux-gnu)
40
+ ffi (1.17.1-arm64-darwin)
41
+ ffi (1.17.1-x86-linux-gnu)
42
+ ffi (1.17.1-x86_64-darwin)
43
+ ffi (1.17.1-x86_64-linux-gnu)
44
+ formatador (1.1.0)
45
+ guard (2.19.1)
46
+ formatador (>= 0.2.4)
47
+ listen (>= 2.7, < 4.0)
48
+ logger (~> 1.6)
49
+ lumberjack (>= 1.0.12, < 2.0)
50
+ nenv (~> 0.1)
51
+ notiffany (~> 0.0)
52
+ ostruct (~> 0.6)
53
+ pry (>= 0.13.0)
54
+ shellany (~> 0.0)
55
+ thor (>= 0.18.1)
56
+ guard-compat (1.2.1)
57
+ guard-rspec (4.7.3)
58
+ guard (~> 2.1)
59
+ guard-compat (~> 1.1)
60
+ rspec (>= 2.99.0, < 4.0)
61
+ guard-rubocop (1.5.0)
62
+ guard (~> 2.0)
63
+ rubocop (< 2.0)
64
+ i18n (1.14.6)
65
+ concurrent-ruby (~> 1.0)
66
+ json (2.10.2)
67
+ language_server-protocol (3.17.0.4)
68
+ listen (3.9.0)
69
+ rb-fsevent (~> 0.10, >= 0.10.3)
70
+ rb-inotify (~> 0.9, >= 0.9.10)
71
+ logger (1.6.3)
72
+ lumberjack (1.2.10)
73
+ method_source (1.1.0)
74
+ minitest (5.25.4)
75
+ nenv (0.3.0)
76
+ notiffany (0.1.3)
77
+ nenv (~> 0.1)
78
+ shellany (~> 0.0)
79
+ ostruct (0.6.1)
80
+ parallel (1.26.3)
81
+ parser (3.3.7.1)
82
+ ast (~> 2.4.1)
83
+ racc
84
+ prism (1.3.0)
85
+ pry (0.15.2)
86
+ coderay (~> 1.1)
87
+ method_source (~> 1.0)
88
+ racc (1.8.1)
89
+ rack (3.1.12)
90
+ rainbow (3.1.1)
91
+ rake (13.2.1)
92
+ rb-fsevent (0.11.2)
93
+ rb-inotify (0.11.1)
94
+ ffi (~> 1.0)
95
+ rbs (3.8.1)
96
+ logger
97
+ regexp_parser (2.10.0)
98
+ rexml (3.4.1)
99
+ rspec (3.13.0)
100
+ rspec-core (~> 3.13.0)
101
+ rspec-expectations (~> 3.13.0)
102
+ rspec-mocks (~> 3.13.0)
103
+ rspec-core (3.13.3)
104
+ rspec-support (~> 3.13.0)
105
+ rspec-expectations (3.13.3)
106
+ diff-lcs (>= 1.2.0, < 2.0)
107
+ rspec-support (~> 3.13.0)
108
+ rspec-mocks (3.13.2)
109
+ diff-lcs (>= 1.2.0, < 2.0)
110
+ rspec-support (~> 3.13.0)
111
+ rspec-support (3.13.2)
112
+ rubocop (1.56.4)
113
+ base64 (~> 0.1.1)
114
+ json (~> 2.3)
115
+ language_server-protocol (>= 3.17.0)
116
+ parallel (~> 1.10)
117
+ parser (>= 3.2.2.3)
118
+ rainbow (>= 2.2.2, < 4.0)
119
+ regexp_parser (>= 1.8, < 3.0)
120
+ rexml (>= 3.2.5, < 4.0)
121
+ rubocop-ast (>= 1.28.1, < 2.0)
122
+ ruby-progressbar (~> 1.7)
123
+ unicode-display_width (>= 2.4.0, < 3.0)
124
+ rubocop-ast (1.38.1)
125
+ parser (>= 3.3.1.0)
126
+ rubocop-performance (1.23.1)
127
+ rubocop (>= 1.48.1, < 2.0)
128
+ rubocop-ast (>= 1.31.1, < 2.0)
129
+ rubocop-rails (2.29.1)
130
+ activesupport (>= 4.2.0)
131
+ rack (>= 1.1)
132
+ rubocop (>= 1.52.0, < 2.0)
133
+ rubocop-ast (>= 1.31.1, < 2.0)
134
+ rubocop-rake (0.6.0)
135
+ rubocop (~> 1.0)
136
+ rubocop-rspec (3.0.0)
137
+ rubocop (~> 1.40)
138
+ ruby-lsp (0.23.11)
139
+ language_server-protocol (~> 3.17.0)
140
+ prism (>= 1.2, < 2.0)
141
+ rbs (>= 3, < 4)
142
+ sorbet-runtime (>= 0.5.10782)
143
+ ruby-lsp-rails (0.4.0)
144
+ ruby-lsp (>= 0.23.0, < 0.24.0)
145
+ ruby-lsp-rspec (0.1.22)
146
+ ruby-lsp (~> 0.23.0)
147
+ ruby-progressbar (1.13.0)
148
+ securerandom (0.4.0)
149
+ shellany (0.0.1)
150
+ simplecov (0.22.0)
151
+ docile (~> 1.1)
152
+ simplecov-html (~> 0.11)
153
+ simplecov_json_formatter (~> 0.1)
154
+ simplecov-html (0.13.1)
155
+ simplecov_json_formatter (0.1.4)
156
+ sorbet-runtime (0.5.11919)
157
+ sqlite3 (2.6.0-aarch64-linux-gnu)
158
+ sqlite3 (2.6.0-arm-linux-gnu)
159
+ sqlite3 (2.6.0-arm64-darwin)
160
+ sqlite3 (2.6.0-x86-linux-gnu)
161
+ sqlite3 (2.6.0-x86_64-darwin)
162
+ sqlite3 (2.6.0-x86_64-linux-gnu)
163
+ thor (1.3.2)
164
+ timeout (0.4.3)
165
+ tzinfo (2.0.6)
166
+ concurrent-ruby (~> 1.0)
167
+ unicode-display_width (2.6.0)
168
+
169
+ PLATFORMS
170
+ aarch64-linux
171
+ arm-linux
172
+ arm64-darwin
173
+ x86-linux
174
+ x86_64-darwin
175
+ x86_64-linux
176
+
177
+ DEPENDENCIES
178
+ activerecord (~> 7.2.0)
179
+ guard (~> 2.18)
180
+ guard-rspec (~> 4.7)
181
+ guard-rubocop (~> 1.5)
182
+ human_enum!
183
+ rake (~> 13.0)
184
+ rspec (~> 3.12)
185
+ rubocop (~> 1.56.3)
186
+ rubocop-performance
187
+ rubocop-rails
188
+ rubocop-rake
189
+ rubocop-rspec
190
+ ruby-lsp-rails
191
+ ruby-lsp-rspec
192
+ simplecov (~> 0.22.0)
193
+ sqlite3 (~> 2.0)
194
+
195
+ BUNDLED WITH
196
+ 2.5.10
@@ -0,0 +1,198 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ human_enum (1.1.3)
5
+ activerecord (>= 6.1, < 9)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (8.0.2)
11
+ activesupport (= 8.0.2)
12
+ activerecord (8.0.2)
13
+ activemodel (= 8.0.2)
14
+ activesupport (= 8.0.2)
15
+ timeout (>= 0.4.0)
16
+ activesupport (8.0.2)
17
+ base64
18
+ benchmark (>= 0.3)
19
+ bigdecimal
20
+ concurrent-ruby (~> 1.0, >= 1.3.1)
21
+ connection_pool (>= 2.2.5)
22
+ drb
23
+ i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
25
+ minitest (>= 5.1)
26
+ securerandom (>= 0.3)
27
+ tzinfo (~> 2.0, >= 2.0.5)
28
+ uri (>= 0.13.1)
29
+ ast (2.4.2)
30
+ base64 (0.1.2)
31
+ benchmark (0.4.0)
32
+ bigdecimal (3.1.8)
33
+ coderay (1.1.3)
34
+ concurrent-ruby (1.3.4)
35
+ connection_pool (2.4.1)
36
+ diff-lcs (1.6.0)
37
+ docile (1.4.1)
38
+ drb (2.2.1)
39
+ ffi (1.17.1-aarch64-linux-gnu)
40
+ ffi (1.17.1-arm-linux-gnu)
41
+ ffi (1.17.1-arm64-darwin)
42
+ ffi (1.17.1-x86-linux-gnu)
43
+ ffi (1.17.1-x86_64-darwin)
44
+ ffi (1.17.1-x86_64-linux-gnu)
45
+ formatador (1.1.0)
46
+ guard (2.19.1)
47
+ formatador (>= 0.2.4)
48
+ listen (>= 2.7, < 4.0)
49
+ logger (~> 1.6)
50
+ lumberjack (>= 1.0.12, < 2.0)
51
+ nenv (~> 0.1)
52
+ notiffany (~> 0.0)
53
+ ostruct (~> 0.6)
54
+ pry (>= 0.13.0)
55
+ shellany (~> 0.0)
56
+ thor (>= 0.18.1)
57
+ guard-compat (1.2.1)
58
+ guard-rspec (4.7.3)
59
+ guard (~> 2.1)
60
+ guard-compat (~> 1.1)
61
+ rspec (>= 2.99.0, < 4.0)
62
+ guard-rubocop (1.5.0)
63
+ guard (~> 2.0)
64
+ rubocop (< 2.0)
65
+ i18n (1.14.6)
66
+ concurrent-ruby (~> 1.0)
67
+ json (2.10.2)
68
+ language_server-protocol (3.17.0.4)
69
+ listen (3.9.0)
70
+ rb-fsevent (~> 0.10, >= 0.10.3)
71
+ rb-inotify (~> 0.9, >= 0.9.10)
72
+ logger (1.6.3)
73
+ lumberjack (1.2.10)
74
+ method_source (1.1.0)
75
+ minitest (5.25.4)
76
+ nenv (0.3.0)
77
+ notiffany (0.1.3)
78
+ nenv (~> 0.1)
79
+ shellany (~> 0.0)
80
+ ostruct (0.6.1)
81
+ parallel (1.26.3)
82
+ parser (3.3.7.1)
83
+ ast (~> 2.4.1)
84
+ racc
85
+ prism (1.3.0)
86
+ pry (0.15.2)
87
+ coderay (~> 1.1)
88
+ method_source (~> 1.0)
89
+ racc (1.8.1)
90
+ rack (3.1.12)
91
+ rainbow (3.1.1)
92
+ rake (13.2.1)
93
+ rb-fsevent (0.11.2)
94
+ rb-inotify (0.11.1)
95
+ ffi (~> 1.0)
96
+ rbs (3.8.1)
97
+ logger
98
+ regexp_parser (2.10.0)
99
+ rexml (3.4.1)
100
+ rspec (3.13.0)
101
+ rspec-core (~> 3.13.0)
102
+ rspec-expectations (~> 3.13.0)
103
+ rspec-mocks (~> 3.13.0)
104
+ rspec-core (3.13.3)
105
+ rspec-support (~> 3.13.0)
106
+ rspec-expectations (3.13.3)
107
+ diff-lcs (>= 1.2.0, < 2.0)
108
+ rspec-support (~> 3.13.0)
109
+ rspec-mocks (3.13.2)
110
+ diff-lcs (>= 1.2.0, < 2.0)
111
+ rspec-support (~> 3.13.0)
112
+ rspec-support (3.13.2)
113
+ rubocop (1.56.4)
114
+ base64 (~> 0.1.1)
115
+ json (~> 2.3)
116
+ language_server-protocol (>= 3.17.0)
117
+ parallel (~> 1.10)
118
+ parser (>= 3.2.2.3)
119
+ rainbow (>= 2.2.2, < 4.0)
120
+ regexp_parser (>= 1.8, < 3.0)
121
+ rexml (>= 3.2.5, < 4.0)
122
+ rubocop-ast (>= 1.28.1, < 2.0)
123
+ ruby-progressbar (~> 1.7)
124
+ unicode-display_width (>= 2.4.0, < 3.0)
125
+ rubocop-ast (1.38.1)
126
+ parser (>= 3.3.1.0)
127
+ rubocop-performance (1.23.1)
128
+ rubocop (>= 1.48.1, < 2.0)
129
+ rubocop-ast (>= 1.31.1, < 2.0)
130
+ rubocop-rails (2.29.1)
131
+ activesupport (>= 4.2.0)
132
+ rack (>= 1.1)
133
+ rubocop (>= 1.52.0, < 2.0)
134
+ rubocop-ast (>= 1.31.1, < 2.0)
135
+ rubocop-rake (0.6.0)
136
+ rubocop (~> 1.0)
137
+ rubocop-rspec (3.0.0)
138
+ rubocop (~> 1.40)
139
+ ruby-lsp (0.23.11)
140
+ language_server-protocol (~> 3.17.0)
141
+ prism (>= 1.2, < 2.0)
142
+ rbs (>= 3, < 4)
143
+ sorbet-runtime (>= 0.5.10782)
144
+ ruby-lsp-rails (0.4.0)
145
+ ruby-lsp (>= 0.23.0, < 0.24.0)
146
+ ruby-lsp-rspec (0.1.22)
147
+ ruby-lsp (~> 0.23.0)
148
+ ruby-progressbar (1.13.0)
149
+ securerandom (0.4.0)
150
+ shellany (0.0.1)
151
+ simplecov (0.22.0)
152
+ docile (~> 1.1)
153
+ simplecov-html (~> 0.11)
154
+ simplecov_json_formatter (~> 0.1)
155
+ simplecov-html (0.13.1)
156
+ simplecov_json_formatter (0.1.4)
157
+ sorbet-runtime (0.5.11919)
158
+ sqlite3 (2.6.0-aarch64-linux-gnu)
159
+ sqlite3 (2.6.0-arm-linux-gnu)
160
+ sqlite3 (2.6.0-arm64-darwin)
161
+ sqlite3 (2.6.0-x86-linux-gnu)
162
+ sqlite3 (2.6.0-x86_64-darwin)
163
+ sqlite3 (2.6.0-x86_64-linux-gnu)
164
+ thor (1.3.2)
165
+ timeout (0.4.3)
166
+ tzinfo (2.0.6)
167
+ concurrent-ruby (~> 1.0)
168
+ unicode-display_width (2.6.0)
169
+ uri (1.0.3)
170
+
171
+ PLATFORMS
172
+ aarch64-linux
173
+ arm-linux
174
+ arm64-darwin
175
+ x86-linux
176
+ x86_64-darwin
177
+ x86_64-linux
178
+
179
+ DEPENDENCIES
180
+ activerecord (~> 8.0.0)
181
+ guard (~> 2.18)
182
+ guard-rspec (~> 4.7)
183
+ guard-rubocop (~> 1.5)
184
+ human_enum!
185
+ rake (~> 13.0)
186
+ rspec (~> 3.12)
187
+ rubocop (~> 1.56.3)
188
+ rubocop-performance
189
+ rubocop-rails
190
+ rubocop-rake
191
+ rubocop-rspec
192
+ ruby-lsp-rails
193
+ ruby-lsp-rspec
194
+ simplecov (~> 0.22.0)
195
+ sqlite3 (~> 2.0)
196
+
197
+ BUNDLED WITH
198
+ 2.5.10
data/human_enum.gemspec CHANGED
@@ -32,5 +32,5 @@ Gem::Specification.new do |spec|
32
32
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
33
  spec.require_paths = ['lib']
34
34
 
35
- spec.add_dependency 'activerecord', '>= 6.1', '< 8'
35
+ spec.add_dependency 'activerecord', '>= 6.1', '< 9'
36
36
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HumanEnum
4
- VERSION = '1.1.2'
4
+ VERSION = '1.1.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: human_enum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Soares
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-10-29 00:00:00.000000000 Z
10
+ date: 2025-03-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activerecord
@@ -19,7 +18,7 @@ dependencies:
19
18
  version: '6.1'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '8'
21
+ version: '9'
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +28,7 @@ dependencies:
29
28
  version: '6.1'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '8'
31
+ version: '9'
33
32
  description: |-
34
33
  This gem allows you to specify enum value translations
35
34
  like any other ActiveRecord attribute and adds helper methods to get
@@ -62,6 +61,8 @@ files:
62
61
  - Gemfile.rails-6.1.lock
63
62
  - Gemfile.rails-7.0.lock
64
63
  - Gemfile.rails-7.1.lock
64
+ - Gemfile.rails-7.2.lock
65
+ - Gemfile.rails-8.0.lock
65
66
  - Guardfile
66
67
  - LICENSE.txt
67
68
  - README.md
@@ -81,7 +82,6 @@ metadata:
81
82
  source_code_uri: https://github.com/rafasoares/human_enum
82
83
  changelog_uri: https://github.com/rafasoares/human_enum/blob/main/CHANGELOG.md
83
84
  rubygems_mfa_required: 'true'
84
- post_install_message:
85
85
  rdoc_options: []
86
86
  require_paths:
87
87
  - lib
@@ -96,8 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 3.5.22
100
- signing_key:
99
+ rubygems_version: 3.6.5
101
100
  specification_version: 4
102
101
  summary: Adds simple and easy I18n support for Rails enums
103
102
  test_files: []