parentry 1.6.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61d7162155374b612b01ec0d2c5519ca49e94e8c793f843b6187148d67dc16d4
4
- data.tar.gz: b1aea8a7225ff14ad890367d799171927eaaf99e262d3b9b4fcb52171f09d611
3
+ metadata.gz: 61ed10a4c8fb7e0f75a5535636333609d9289e8daa6cc340fa149cb02683fc1d
4
+ data.tar.gz: 222fcb1349c6e86d54bf833d172d2f4b95370e982cb7afe24c6d57eb1f03db74
5
5
  SHA512:
6
- metadata.gz: e96ac1b93d29040797963e598976d3878b7852bbb564e5d0ebd5d1ec15ab4c0c4362a4c887b750a5d8467d8207e8f376facbe23396b24e1e33c209cc58240848
7
- data.tar.gz: d6bdd03b87f6e35824e4b0cbb88a68fdaef2b81f9122a69ef211db4b1b064423af8a11017263cf6032c09076e7a5986dc598b6a1cde6d724fe821af86d2637e7
6
+ metadata.gz: be51efd0458a9a45ad592a2ecedd73c0486933d2e0658eb911a4d2cb218074f52110b7249a749f7ac08ff20a6816348cf911d9ca9cf61897d38c717d79361a1f
7
+ data.tar.gz: 16f7c6e551a6cd232ee044bd106be6259534be3d1b0c4d7b56afd789f3f4a3946a5a0557b3f1dd7ca803338cd06276b4dcec3bf191a401544758cc738676e639
@@ -10,15 +10,20 @@ jobs:
10
10
  strategy:
11
11
  matrix:
12
12
  ruby:
13
- - '2.7'
14
- - '3.0'
13
+ - '3.1'
14
+ - '3.2'
15
+ - '3.3'
15
16
  activerecord:
16
- - 6.0.0
17
- - 6.1.0
18
17
  - 7.0.0
18
+ - 7.1.0
19
+ - 7.2.0
20
+ - 8.0.0
19
21
  strategy:
20
22
  - array
21
23
  - ltree
24
+ exclude:
25
+ - ruby: '3.1'
26
+ activerecord: 8.0.0
22
27
 
23
28
  env:
24
29
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
@@ -36,7 +41,7 @@ jobs:
36
41
  options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
37
42
 
38
43
  steps:
39
- - uses: actions/checkout@v2
44
+ - uses: actions/checkout@v4
40
45
 
41
46
  - name: Set up Ruby
42
47
  uses: ruby/setup-ruby@v1
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ inherit_mode:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 2.5
7
+ TargetRubyVersion: 3.1
8
8
  Exclude:
9
9
  - gemfiles/**
10
10
 
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.0.3
1
+ ruby 3.3.6
data/Appraisals CHANGED
@@ -1,19 +1,19 @@
1
- appraise 'activerecord-5.1.5' do
2
- gem 'activerecord', '~> 5.1', '< 5.2'
3
- end
4
-
5
- appraise 'activerecord-5.2.0' do
6
- gem 'activerecord', '~> 5.2', '< 6'
1
+ appraise 'activerecord_7.0.0' do
2
+ gem 'activerecord', '~> 7.0', '< 7.1'
3
+ gem 'base64'
4
+ gem 'bigdecimal'
5
+ gem 'drb'
6
+ gem 'mutex_m'
7
7
  end
8
8
 
9
- appraise 'activerecord-6.0.0' do
10
- gem 'activerecord', '~> 6.0', '< 6.1'
9
+ appraise 'activerecord_7.1.0' do
10
+ gem 'activerecord', '~> 7.1', '< 7.2'
11
11
  end
12
12
 
13
- appraise 'activerecord-6.1.0' do
14
- gem 'activerecord', '~> 6.1', '< 6.2'
13
+ appraise 'activerecord_7.2.0' do
14
+ gem 'activerecord', '~> 7.2', '< 8'
15
15
  end
16
16
 
17
- appraise 'activerecord-7.0.0' do
18
- gem 'activerecord', '~> 7.0', '< 7.1'
17
+ appraise 'activerecord_8.0.0' do
18
+ gem 'activerecord', '8.0.0', '< 8.1'
19
19
  end
data/Gemfile CHANGED
@@ -4,3 +4,15 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem 'appraisal'
7
+ gem 'bundler'
8
+ gem 'combustion'
9
+ gem 'database_cleaner', '~> 2'
10
+ gem 'ostruct'
11
+ gem 'pg', '~> 1.5'
12
+ gem 'pry'
13
+ gem 'rake'
14
+ gem 'rspec-rails'
15
+ gem 'rubocop-rspec'
16
+ gem 'simplecov', '~> 0.20'
17
+ # The following version lock is necessary to support Ruby 3.1
18
+ gem 'zeitwerk', '~> 2.6.0'
@@ -3,6 +3,21 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
+ gem "bundler"
7
+ gem "combustion"
8
+ gem "database_cleaner", "~> 2"
9
+ gem "ostruct"
10
+ gem "pg", "~> 1.5"
11
+ gem "pry"
12
+ gem "rake"
13
+ gem "rspec-rails"
14
+ gem "rubocop-rspec"
15
+ gem "simplecov", "~> 0.20"
16
+ gem "zeitwerk", "~> 2.6.0"
6
17
  gem "activerecord", "~> 7.0", "< 7.1"
18
+ gem "base64"
19
+ gem "bigdecimal"
20
+ gem "drb"
21
+ gem "mutex_m"
7
22
 
8
23
  gemspec path: "../"
@@ -1,150 +1,170 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- parentry (1.6.0)
5
- activerecord (>= 5.1, < 7.1)
4
+ parentry (1.8.0)
5
+ activerecord (>= 6.1, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (7.0.0)
11
- actionview (= 7.0.0)
12
- activesupport (= 7.0.0)
13
- rack (~> 2.0, >= 2.2.0)
10
+ actionpack (7.0.8.6)
11
+ actionview (= 7.0.8.6)
12
+ activesupport (= 7.0.8.6)
13
+ rack (~> 2.0, >= 2.2.4)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (7.0.0)
18
- activesupport (= 7.0.0)
17
+ actionview (7.0.8.6)
18
+ activesupport (= 7.0.8.6)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activemodel (7.0.0)
24
- activesupport (= 7.0.0)
25
- activerecord (7.0.0)
26
- activemodel (= 7.0.0)
27
- activesupport (= 7.0.0)
28
- activesupport (7.0.0)
23
+ activemodel (7.0.8.6)
24
+ activesupport (= 7.0.8.6)
25
+ activerecord (7.0.8.6)
26
+ activemodel (= 7.0.8.6)
27
+ activesupport (= 7.0.8.6)
28
+ activesupport (7.0.8.6)
29
29
  concurrent-ruby (~> 1.0, >= 1.0.2)
30
30
  i18n (>= 1.6, < 2)
31
31
  minitest (>= 5.1)
32
32
  tzinfo (~> 2.0)
33
- appraisal (2.3.0)
33
+ appraisal (2.5.0)
34
34
  bundler
35
35
  rake
36
36
  thor (>= 0.14.0)
37
37
  ast (2.4.2)
38
- builder (3.2.4)
38
+ base64 (0.2.0)
39
+ bigdecimal (3.1.8)
40
+ builder (3.3.0)
39
41
  coderay (1.1.3)
40
- combustion (1.3.5)
42
+ combustion (1.5.0)
41
43
  activesupport (>= 3.0.0)
42
44
  railties (>= 3.0.0)
43
45
  thor (>= 0.14.6)
44
- concurrent-ruby (1.1.9)
46
+ concurrent-ruby (1.3.4)
45
47
  crass (1.0.6)
46
- database_cleaner (1.8.5)
47
- diff-lcs (1.4.4)
48
- docile (1.4.0)
49
- erubi (1.10.0)
50
- i18n (1.8.11)
48
+ database_cleaner (2.1.0)
49
+ database_cleaner-active_record (>= 2, < 3)
50
+ database_cleaner-active_record (2.2.0)
51
+ activerecord (>= 5.a)
52
+ database_cleaner-core (~> 2.0.0)
53
+ database_cleaner-core (2.0.1)
54
+ diff-lcs (1.5.1)
55
+ docile (1.4.1)
56
+ drb (2.2.1)
57
+ erubi (1.13.0)
58
+ i18n (1.14.6)
51
59
  concurrent-ruby (~> 1.0)
52
- loofah (2.13.0)
60
+ json (2.8.1)
61
+ language_server-protocol (3.17.0.3)
62
+ loofah (2.23.1)
53
63
  crass (~> 1.0.2)
54
- nokogiri (>= 1.5.9)
55
- method_source (1.0.0)
56
- minitest (5.15.0)
57
- nokogiri (1.12.5-x86_64-darwin)
64
+ nokogiri (>= 1.12.0)
65
+ method_source (1.1.0)
66
+ mini_portile2 (2.8.7)
67
+ minitest (5.25.1)
68
+ mutex_m (0.2.0)
69
+ nokogiri (1.16.7)
70
+ mini_portile2 (~> 2.8.2)
58
71
  racc (~> 1.4)
59
- nokogiri (1.12.5-x86_64-linux)
60
- racc (~> 1.4)
61
- parallel (1.21.0)
62
- parser (3.0.3.1)
72
+ ostruct (0.6.1)
73
+ parallel (1.26.3)
74
+ parser (3.3.6.0)
63
75
  ast (~> 2.4.1)
64
- pg (1.2.3)
65
- pry (0.14.0)
76
+ racc
77
+ pg (1.5.9)
78
+ pry (0.14.2)
66
79
  coderay (~> 1.1)
67
80
  method_source (~> 1.0)
68
- racc (1.6.0)
69
- rack (2.2.3)
70
- rack-test (1.1.0)
71
- rack (>= 1.0, < 3)
72
- rails-dom-testing (2.0.3)
73
- activesupport (>= 4.2.0)
81
+ racc (1.8.1)
82
+ rack (2.2.10)
83
+ rack-test (2.1.0)
84
+ rack (>= 1.3)
85
+ rails-dom-testing (2.2.0)
86
+ activesupport (>= 5.0.0)
87
+ minitest
74
88
  nokogiri (>= 1.6)
75
- rails-html-sanitizer (1.4.2)
76
- loofah (~> 2.3)
77
- railties (7.0.0)
78
- actionpack (= 7.0.0)
79
- activesupport (= 7.0.0)
89
+ rails-html-sanitizer (1.6.0)
90
+ loofah (~> 2.21)
91
+ nokogiri (~> 1.14)
92
+ railties (7.0.8.6)
93
+ actionpack (= 7.0.8.6)
94
+ activesupport (= 7.0.8.6)
80
95
  method_source
81
96
  rake (>= 12.2)
82
97
  thor (~> 1.0)
83
98
  zeitwerk (~> 2.5)
84
- rainbow (3.0.0)
85
- rake (13.0.6)
86
- regexp_parser (2.1.1)
87
- rexml (3.2.5)
88
- rspec-core (3.10.1)
89
- rspec-support (~> 3.10.0)
90
- rspec-expectations (3.10.1)
99
+ rainbow (3.1.1)
100
+ rake (13.2.1)
101
+ regexp_parser (2.9.2)
102
+ rspec-core (3.13.2)
103
+ rspec-support (~> 3.13.0)
104
+ rspec-expectations (3.13.3)
91
105
  diff-lcs (>= 1.2.0, < 2.0)
92
- rspec-support (~> 3.10.0)
93
- rspec-mocks (3.10.2)
106
+ rspec-support (~> 3.13.0)
107
+ rspec-mocks (3.13.2)
94
108
  diff-lcs (>= 1.2.0, < 2.0)
95
- rspec-support (~> 3.10.0)
96
- rspec-rails (4.0.2)
97
- actionpack (>= 4.2)
98
- activesupport (>= 4.2)
99
- railties (>= 4.2)
100
- rspec-core (~> 3.10)
101
- rspec-expectations (~> 3.10)
102
- rspec-mocks (~> 3.10)
103
- rspec-support (~> 3.10)
104
- rspec-support (3.10.3)
105
- rubocop (1.22.3)
109
+ rspec-support (~> 3.13.0)
110
+ rspec-rails (7.0.1)
111
+ actionpack (>= 7.0)
112
+ activesupport (>= 7.0)
113
+ railties (>= 7.0)
114
+ rspec-core (~> 3.13)
115
+ rspec-expectations (~> 3.13)
116
+ rspec-mocks (~> 3.13)
117
+ rspec-support (~> 3.13)
118
+ rspec-support (3.13.1)
119
+ rubocop (1.68.0)
120
+ json (~> 2.3)
121
+ language_server-protocol (>= 3.17.0)
106
122
  parallel (~> 1.10)
107
- parser (>= 3.0.0.0)
123
+ parser (>= 3.3.0.2)
108
124
  rainbow (>= 2.2.2, < 4.0)
109
- regexp_parser (>= 1.8, < 3.0)
110
- rexml
111
- rubocop-ast (>= 1.12.0, < 2.0)
125
+ regexp_parser (>= 2.4, < 3.0)
126
+ rubocop-ast (>= 1.32.2, < 2.0)
112
127
  ruby-progressbar (~> 1.7)
113
- unicode-display_width (>= 1.4.0, < 3.0)
114
- rubocop-ast (1.12.0)
115
- parser (>= 3.0.1.1)
116
- rubocop-rspec (2.5.0)
117
- rubocop (~> 1.19)
118
- ruby-progressbar (1.11.0)
119
- simplecov (0.21.2)
128
+ unicode-display_width (>= 2.4.0, < 3.0)
129
+ rubocop-ast (1.34.1)
130
+ parser (>= 3.3.1.0)
131
+ rubocop-rspec (3.2.0)
132
+ rubocop (~> 1.61)
133
+ ruby-progressbar (1.13.0)
134
+ simplecov (0.22.0)
120
135
  docile (~> 1.1)
121
136
  simplecov-html (~> 0.11)
122
137
  simplecov_json_formatter (~> 0.1)
123
- simplecov-html (0.12.3)
124
- simplecov_json_formatter (0.1.3)
125
- thor (1.1.0)
126
- tzinfo (2.0.4)
138
+ simplecov-html (0.13.1)
139
+ simplecov_json_formatter (0.1.4)
140
+ thor (1.3.2)
141
+ tzinfo (2.0.6)
127
142
  concurrent-ruby (~> 1.0)
128
- unicode-display_width (2.1.0)
129
- zeitwerk (2.5.1)
143
+ unicode-display_width (2.6.0)
144
+ zeitwerk (2.6.18)
130
145
 
131
146
  PLATFORMS
132
- x86_64-darwin-20
133
- x86_64-linux
147
+ ruby
134
148
 
135
149
  DEPENDENCIES
136
150
  activerecord (~> 7.0, < 7.1)
137
151
  appraisal
138
- bundler (~> 2)
139
- combustion (~> 1.1)
140
- database_cleaner (~> 1.6)
152
+ base64
153
+ bigdecimal
154
+ bundler
155
+ combustion
156
+ database_cleaner (~> 2)
157
+ drb
158
+ mutex_m
159
+ ostruct
141
160
  parentry!
142
- pg (~> 1.2)
143
- pry (~> 0.13)
144
- rake (~> 13)
145
- rspec-rails (~> 4.0)
146
- rubocop-rspec (~> 2.1)
161
+ pg (~> 1.5)
162
+ pry
163
+ rake
164
+ rspec-rails
165
+ rubocop-rspec
147
166
  simplecov (~> 0.20)
167
+ zeitwerk (~> 2.6.0)
148
168
 
149
169
  BUNDLED WITH
150
- 2.2.32
170
+ 2.5.17
@@ -0,0 +1,19 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "bundler"
7
+ gem "combustion"
8
+ gem "database_cleaner", "~> 2"
9
+ gem "ostruct"
10
+ gem "pg", "~> 1.5"
11
+ gem "pry"
12
+ gem "rake"
13
+ gem "rspec-rails"
14
+ gem "rubocop-rspec"
15
+ gem "simplecov", "~> 0.20"
16
+ gem "zeitwerk", "~> 2.6.0"
17
+ gem "activerecord", "~> 7.1", "< 7.2"
18
+
19
+ gemspec path: "../"
@@ -0,0 +1,199 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ parentry (1.8.0)
5
+ activerecord (>= 6.1, < 8.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionpack (7.1.5)
11
+ actionview (= 7.1.5)
12
+ activesupport (= 7.1.5)
13
+ nokogiri (>= 1.8.5)
14
+ racc
15
+ rack (>= 2.2.4)
16
+ rack-session (>= 1.0.1)
17
+ rack-test (>= 0.6.3)
18
+ rails-dom-testing (~> 2.2)
19
+ rails-html-sanitizer (~> 1.6)
20
+ actionview (7.1.5)
21
+ activesupport (= 7.1.5)
22
+ builder (~> 3.1)
23
+ erubi (~> 1.11)
24
+ rails-dom-testing (~> 2.2)
25
+ rails-html-sanitizer (~> 1.6)
26
+ activemodel (7.1.5)
27
+ activesupport (= 7.1.5)
28
+ activerecord (7.1.5)
29
+ activemodel (= 7.1.5)
30
+ activesupport (= 7.1.5)
31
+ timeout (>= 0.4.0)
32
+ activesupport (7.1.5)
33
+ base64
34
+ benchmark (>= 0.3)
35
+ bigdecimal
36
+ concurrent-ruby (~> 1.0, >= 1.0.2)
37
+ connection_pool (>= 2.2.5)
38
+ drb
39
+ i18n (>= 1.6, < 2)
40
+ logger (>= 1.4.2)
41
+ minitest (>= 5.1)
42
+ mutex_m
43
+ securerandom (>= 0.3)
44
+ tzinfo (~> 2.0)
45
+ appraisal (2.5.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ ast (2.4.2)
50
+ base64 (0.2.0)
51
+ benchmark (0.4.0)
52
+ bigdecimal (3.1.8)
53
+ builder (3.3.0)
54
+ coderay (1.1.3)
55
+ combustion (1.5.0)
56
+ activesupport (>= 3.0.0)
57
+ railties (>= 3.0.0)
58
+ thor (>= 0.14.6)
59
+ concurrent-ruby (1.3.4)
60
+ connection_pool (2.4.1)
61
+ crass (1.0.6)
62
+ database_cleaner (2.1.0)
63
+ database_cleaner-active_record (>= 2, < 3)
64
+ database_cleaner-active_record (2.2.0)
65
+ activerecord (>= 5.a)
66
+ database_cleaner-core (~> 2.0.0)
67
+ database_cleaner-core (2.0.1)
68
+ diff-lcs (1.5.1)
69
+ docile (1.4.1)
70
+ drb (2.2.1)
71
+ erubi (1.13.0)
72
+ i18n (1.14.6)
73
+ concurrent-ruby (~> 1.0)
74
+ io-console (0.7.2)
75
+ irb (1.14.1)
76
+ rdoc (>= 4.0.0)
77
+ reline (>= 0.4.2)
78
+ json (2.8.1)
79
+ language_server-protocol (3.17.0.3)
80
+ logger (1.6.1)
81
+ loofah (2.23.1)
82
+ crass (~> 1.0.2)
83
+ nokogiri (>= 1.12.0)
84
+ method_source (1.1.0)
85
+ mini_portile2 (2.8.7)
86
+ minitest (5.25.1)
87
+ mutex_m (0.2.0)
88
+ nokogiri (1.16.7)
89
+ mini_portile2 (~> 2.8.2)
90
+ racc (~> 1.4)
91
+ ostruct (0.6.1)
92
+ parallel (1.26.3)
93
+ parser (3.3.6.0)
94
+ ast (~> 2.4.1)
95
+ racc
96
+ pg (1.5.9)
97
+ pry (0.14.2)
98
+ coderay (~> 1.1)
99
+ method_source (~> 1.0)
100
+ psych (5.2.0)
101
+ stringio
102
+ racc (1.8.1)
103
+ rack (3.1.8)
104
+ rack-session (2.0.0)
105
+ rack (>= 3.0.0)
106
+ rack-test (2.1.0)
107
+ rack (>= 1.3)
108
+ rackup (2.2.0)
109
+ rack (>= 3)
110
+ rails-dom-testing (2.2.0)
111
+ activesupport (>= 5.0.0)
112
+ minitest
113
+ nokogiri (>= 1.6)
114
+ rails-html-sanitizer (1.6.0)
115
+ loofah (~> 2.21)
116
+ nokogiri (~> 1.14)
117
+ railties (7.1.5)
118
+ actionpack (= 7.1.5)
119
+ activesupport (= 7.1.5)
120
+ irb
121
+ rackup (>= 1.0.0)
122
+ rake (>= 12.2)
123
+ thor (~> 1.0, >= 1.2.2)
124
+ zeitwerk (~> 2.6)
125
+ rainbow (3.1.1)
126
+ rake (13.2.1)
127
+ rdoc (6.7.0)
128
+ psych (>= 4.0.0)
129
+ regexp_parser (2.9.2)
130
+ reline (0.5.11)
131
+ io-console (~> 0.5)
132
+ rspec-core (3.13.2)
133
+ rspec-support (~> 3.13.0)
134
+ rspec-expectations (3.13.3)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.13.0)
137
+ rspec-mocks (3.13.2)
138
+ diff-lcs (>= 1.2.0, < 2.0)
139
+ rspec-support (~> 3.13.0)
140
+ rspec-rails (7.0.1)
141
+ actionpack (>= 7.0)
142
+ activesupport (>= 7.0)
143
+ railties (>= 7.0)
144
+ rspec-core (~> 3.13)
145
+ rspec-expectations (~> 3.13)
146
+ rspec-mocks (~> 3.13)
147
+ rspec-support (~> 3.13)
148
+ rspec-support (3.13.1)
149
+ rubocop (1.68.0)
150
+ json (~> 2.3)
151
+ language_server-protocol (>= 3.17.0)
152
+ parallel (~> 1.10)
153
+ parser (>= 3.3.0.2)
154
+ rainbow (>= 2.2.2, < 4.0)
155
+ regexp_parser (>= 2.4, < 3.0)
156
+ rubocop-ast (>= 1.32.2, < 2.0)
157
+ ruby-progressbar (~> 1.7)
158
+ unicode-display_width (>= 2.4.0, < 3.0)
159
+ rubocop-ast (1.34.1)
160
+ parser (>= 3.3.1.0)
161
+ rubocop-rspec (3.2.0)
162
+ rubocop (~> 1.61)
163
+ ruby-progressbar (1.13.0)
164
+ securerandom (0.3.1)
165
+ simplecov (0.22.0)
166
+ docile (~> 1.1)
167
+ simplecov-html (~> 0.11)
168
+ simplecov_json_formatter (~> 0.1)
169
+ simplecov-html (0.13.1)
170
+ simplecov_json_formatter (0.1.4)
171
+ stringio (3.1.2)
172
+ thor (1.3.2)
173
+ timeout (0.4.2)
174
+ tzinfo (2.0.6)
175
+ concurrent-ruby (~> 1.0)
176
+ unicode-display_width (2.6.0)
177
+ zeitwerk (2.6.18)
178
+
179
+ PLATFORMS
180
+ ruby
181
+
182
+ DEPENDENCIES
183
+ activerecord (~> 7.1, < 7.2)
184
+ appraisal
185
+ bundler
186
+ combustion
187
+ database_cleaner (~> 2)
188
+ ostruct
189
+ parentry!
190
+ pg (~> 1.5)
191
+ pry
192
+ rake
193
+ rspec-rails
194
+ rubocop-rspec
195
+ simplecov (~> 0.20)
196
+ zeitwerk (~> 2.6.0)
197
+
198
+ BUNDLED WITH
199
+ 2.5.17
@@ -0,0 +1,19 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "bundler"
7
+ gem "combustion"
8
+ gem "database_cleaner", "~> 2"
9
+ gem "ostruct"
10
+ gem "pg", "~> 1.5"
11
+ gem "pry"
12
+ gem "rake"
13
+ gem "rspec-rails"
14
+ gem "rubocop-rspec"
15
+ gem "simplecov", "~> 0.20"
16
+ gem "zeitwerk", "~> 2.6.0"
17
+ gem "activerecord", "~> 7.2", "< 8"
18
+
19
+ gemspec path: "../"