edgestitch 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a38d42c4c3dc9dc9f23ffffdf6ec7fa50666dde4dca15183d927a553e73ed34
4
- data.tar.gz: 2bdf6269144963eac3c1eb31baf98612ffd9a102907b1fe4a79a105e5e8b38a3
3
+ metadata.gz: e652616f7c5a52b0eaaac4fb67a2529ae1b62512d44673d87f4770002ffe89d8
4
+ data.tar.gz: ed110218b891340f64f270d8cee9e8bda731518e86f308316ccac97b575fdec9
5
5
  SHA512:
6
- metadata.gz: ae7126ada97170c8b9a10483ccaec6a55f1d36081644bb1105c1234ae3e4e8f205da2c8bbd2b9b282e4693bd6e52b88b5ec28ced88ff3e24cf0bebef8e5eb23f
7
- data.tar.gz: b71a7e65f81191282f4bb6502a4311ebba5bcc858088b9256035efbb52863d9146de9a6dd3b463a4da348dc07ccc1662b2adb7adcdbab4d654d410ced3317d6b
6
+ metadata.gz: 60d57d68cd2f3c75f25f1383f1a8759b387f624088ff87f0dc5b8a1c9f417633be1c08af6727b6b939070d954da92ee6eafd69cafde26097a512503dcab8fe69
7
+ data.tar.gz: c6db98b1240f661a96447cc1d315cf284e8e416e2585c2dccf2d9fe12311531a92165c49abba3c78aaa1fc8755150a9d372df675be60b02186e40b940458299c
data/.rubocop.yml CHANGED
@@ -1,2 +1,10 @@
1
1
  require:
2
2
  - rubocop-powerhome
3
+
4
+ Style/FrozenStringLiteralComment:
5
+ Exclude:
6
+ - 'gemfiles/*'
7
+
8
+ Bundler/OrderedGems:
9
+ Exclude:
10
+ - 'gemfiles/*'
data/Appraisals ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise "rails-6-0" do
4
+ gem "rails", "6.0.6.1"
5
+ end
6
+
7
+ appraise "rails-6-1" do
8
+ gem "rails", "6.1.7.4"
9
+ end
10
+
11
+ appraise "rails-7-0" do
12
+ gem "rails", "7.0.6"
13
+ end
data/Gemfile CHANGED
@@ -4,6 +4,4 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- rails_version = ENV.fetch("RAILS_VERSION", ">= 6.0.6")
8
-
9
- gem "rails", rails_version
7
+ gem "rubocop-powerhome", path: "../rubocop-powerhome"
data/Gemfile.lock ADDED
@@ -0,0 +1,267 @@
1
+ PATH
2
+ remote: ../rubocop-powerhome
3
+ specs:
4
+ rubocop-powerhome (0.5.2)
5
+ rubocop (~> 1.52.0)
6
+ rubocop-performance
7
+ rubocop-rails
8
+ rubocop-rake
9
+ rubocop-rspec
10
+
11
+ PATH
12
+ remote: .
13
+ specs:
14
+ edgestitch (0.4.0)
15
+
16
+ GEM
17
+ remote: https://rubygems.org/
18
+ specs:
19
+ actioncable (7.0.8)
20
+ actionpack (= 7.0.8)
21
+ activesupport (= 7.0.8)
22
+ nio4r (~> 2.0)
23
+ websocket-driver (>= 0.6.1)
24
+ actionmailbox (7.0.8)
25
+ actionpack (= 7.0.8)
26
+ activejob (= 7.0.8)
27
+ activerecord (= 7.0.8)
28
+ activestorage (= 7.0.8)
29
+ activesupport (= 7.0.8)
30
+ mail (>= 2.7.1)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ actionmailer (7.0.8)
35
+ actionpack (= 7.0.8)
36
+ actionview (= 7.0.8)
37
+ activejob (= 7.0.8)
38
+ activesupport (= 7.0.8)
39
+ mail (~> 2.5, >= 2.5.4)
40
+ net-imap
41
+ net-pop
42
+ net-smtp
43
+ rails-dom-testing (~> 2.0)
44
+ actionpack (7.0.8)
45
+ actionview (= 7.0.8)
46
+ activesupport (= 7.0.8)
47
+ rack (~> 2.0, >= 2.2.4)
48
+ rack-test (>= 0.6.3)
49
+ rails-dom-testing (~> 2.0)
50
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
51
+ actiontext (7.0.8)
52
+ actionpack (= 7.0.8)
53
+ activerecord (= 7.0.8)
54
+ activestorage (= 7.0.8)
55
+ activesupport (= 7.0.8)
56
+ globalid (>= 0.6.0)
57
+ nokogiri (>= 1.8.5)
58
+ actionview (7.0.8)
59
+ activesupport (= 7.0.8)
60
+ builder (~> 3.1)
61
+ erubi (~> 1.4)
62
+ rails-dom-testing (~> 2.0)
63
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
64
+ activejob (7.0.8)
65
+ activesupport (= 7.0.8)
66
+ globalid (>= 0.3.6)
67
+ activemodel (7.0.8)
68
+ activesupport (= 7.0.8)
69
+ activerecord (7.0.8)
70
+ activemodel (= 7.0.8)
71
+ activesupport (= 7.0.8)
72
+ activestorage (7.0.8)
73
+ actionpack (= 7.0.8)
74
+ activejob (= 7.0.8)
75
+ activerecord (= 7.0.8)
76
+ activesupport (= 7.0.8)
77
+ marcel (~> 1.0)
78
+ mini_mime (>= 1.1.0)
79
+ activesupport (7.0.8)
80
+ concurrent-ruby (~> 1.0, >= 1.0.2)
81
+ i18n (>= 1.6, < 2)
82
+ minitest (>= 5.1)
83
+ tzinfo (~> 2.0)
84
+ appraisal (2.4.1)
85
+ bundler
86
+ rake
87
+ thor (>= 0.14.0)
88
+ ast (2.4.2)
89
+ builder (3.2.4)
90
+ concurrent-ruby (1.2.2)
91
+ crass (1.0.6)
92
+ date (3.3.4)
93
+ diff-lcs (1.5.0)
94
+ docile (1.1.5)
95
+ erubi (1.12.0)
96
+ globalid (1.2.1)
97
+ activesupport (>= 6.1)
98
+ i18n (1.14.1)
99
+ concurrent-ruby (~> 1.0)
100
+ json (2.7.1)
101
+ license_finder (7.1.0)
102
+ bundler
103
+ rubyzip (>= 1, < 3)
104
+ thor (~> 1.2)
105
+ tomlrb (>= 1.3, < 2.1)
106
+ with_env (= 1.1.0)
107
+ xml-simple (~> 1.1.9)
108
+ loofah (2.22.0)
109
+ crass (~> 1.0.2)
110
+ nokogiri (>= 1.12.0)
111
+ mail (2.8.1)
112
+ mini_mime (>= 0.1.1)
113
+ net-imap
114
+ net-pop
115
+ net-smtp
116
+ marcel (1.0.2)
117
+ method_source (1.0.0)
118
+ mini_mime (1.1.5)
119
+ minitest (5.20.0)
120
+ mysql2 (0.5.5)
121
+ net-imap (0.4.9.1)
122
+ date
123
+ net-protocol
124
+ net-pop (0.1.2)
125
+ net-protocol
126
+ net-protocol (0.2.2)
127
+ timeout
128
+ net-smtp (0.4.0.1)
129
+ net-protocol
130
+ nio4r (2.7.0)
131
+ nokogiri (1.16.0-arm64-darwin)
132
+ racc (~> 1.4)
133
+ nokogiri (1.16.0-x86_64-linux)
134
+ racc (~> 1.4)
135
+ parallel (1.24.0)
136
+ parser (3.3.0.2)
137
+ ast (~> 2.4.1)
138
+ racc
139
+ racc (1.7.3)
140
+ rack (2.2.8)
141
+ rack-test (2.1.0)
142
+ rack (>= 1.3)
143
+ rails (7.0.8)
144
+ actioncable (= 7.0.8)
145
+ actionmailbox (= 7.0.8)
146
+ actionmailer (= 7.0.8)
147
+ actionpack (= 7.0.8)
148
+ actiontext (= 7.0.8)
149
+ actionview (= 7.0.8)
150
+ activejob (= 7.0.8)
151
+ activemodel (= 7.0.8)
152
+ activerecord (= 7.0.8)
153
+ activestorage (= 7.0.8)
154
+ activesupport (= 7.0.8)
155
+ bundler (>= 1.15.0)
156
+ railties (= 7.0.8)
157
+ rails-dom-testing (2.2.0)
158
+ activesupport (>= 5.0.0)
159
+ minitest
160
+ nokogiri (>= 1.6)
161
+ rails-html-sanitizer (1.6.0)
162
+ loofah (~> 2.21)
163
+ nokogiri (~> 1.14)
164
+ railties (7.0.8)
165
+ actionpack (= 7.0.8)
166
+ activesupport (= 7.0.8)
167
+ method_source
168
+ rake (>= 12.2)
169
+ thor (~> 1.0)
170
+ zeitwerk (~> 2.5)
171
+ rainbow (3.1.1)
172
+ rake (13.1.0)
173
+ regexp_parser (2.9.0)
174
+ rexml (3.2.6)
175
+ rspec (3.12.0)
176
+ rspec-core (~> 3.12.0)
177
+ rspec-expectations (~> 3.12.0)
178
+ rspec-mocks (~> 3.12.0)
179
+ rspec-core (3.12.2)
180
+ rspec-support (~> 3.12.0)
181
+ rspec-expectations (3.12.3)
182
+ diff-lcs (>= 1.2.0, < 2.0)
183
+ rspec-support (~> 3.12.0)
184
+ rspec-mocks (3.12.6)
185
+ diff-lcs (>= 1.2.0, < 2.0)
186
+ rspec-support (~> 3.12.0)
187
+ rspec-rails (5.1.2)
188
+ actionpack (>= 5.2)
189
+ activesupport (>= 5.2)
190
+ railties (>= 5.2)
191
+ rspec-core (~> 3.10)
192
+ rspec-expectations (~> 3.10)
193
+ rspec-mocks (~> 3.10)
194
+ rspec-support (~> 3.10)
195
+ rspec-support (3.12.1)
196
+ rubocop (1.52.1)
197
+ json (~> 2.3)
198
+ parallel (~> 1.10)
199
+ parser (>= 3.2.2.3)
200
+ rainbow (>= 2.2.2, < 4.0)
201
+ regexp_parser (>= 1.8, < 3.0)
202
+ rexml (>= 3.2.5, < 4.0)
203
+ rubocop-ast (>= 1.28.0, < 2.0)
204
+ ruby-progressbar (~> 1.7)
205
+ unicode-display_width (>= 2.4.0, < 3.0)
206
+ rubocop-ast (1.30.0)
207
+ parser (>= 3.2.1.0)
208
+ rubocop-capybara (2.20.0)
209
+ rubocop (~> 1.41)
210
+ rubocop-factory_bot (2.25.0)
211
+ rubocop (~> 1.33)
212
+ rubocop-performance (1.20.1)
213
+ rubocop (>= 1.48.1, < 2.0)
214
+ rubocop-ast (>= 1.30.0, < 2.0)
215
+ rubocop-rails (2.23.1)
216
+ activesupport (>= 4.2.0)
217
+ rack (>= 1.1)
218
+ rubocop (>= 1.33.0, < 2.0)
219
+ rubocop-ast (>= 1.30.0, < 2.0)
220
+ rubocop-rake (0.6.0)
221
+ rubocop (~> 1.0)
222
+ rubocop-rspec (2.26.1)
223
+ rubocop (~> 1.40)
224
+ rubocop-capybara (~> 2.17)
225
+ rubocop-factory_bot (~> 2.22)
226
+ ruby-progressbar (1.13.0)
227
+ rubyzip (2.3.2)
228
+ simplecov (0.15.1)
229
+ docile (~> 1.1.0)
230
+ json (>= 1.8, < 3)
231
+ simplecov-html (~> 0.10.0)
232
+ simplecov-html (0.10.2)
233
+ thor (1.3.0)
234
+ timeout (0.4.1)
235
+ tomlrb (2.0.3)
236
+ tzinfo (2.0.6)
237
+ concurrent-ruby (~> 1.0)
238
+ unicode-display_width (2.5.0)
239
+ websocket-driver (0.7.6)
240
+ websocket-extensions (>= 0.1.0)
241
+ websocket-extensions (0.1.5)
242
+ with_env (1.1.0)
243
+ xml-simple (1.1.9)
244
+ rexml
245
+ yard (0.9.21)
246
+ zeitwerk (2.6.12)
247
+
248
+ PLATFORMS
249
+ arm64-darwin-22
250
+ x86_64-linux
251
+
252
+ DEPENDENCIES
253
+ appraisal (~> 2.4.1)
254
+ bundler (~> 2.1)
255
+ edgestitch!
256
+ license_finder (>= 7.0)
257
+ mysql2 (= 0.5.5)
258
+ rails (>= 6.0.6.1, < 7.1)
259
+ rake (~> 13.0)
260
+ rspec (~> 3.0)
261
+ rspec-rails (~> 5.1.2)
262
+ rubocop-powerhome!
263
+ simplecov (= 0.15.1)
264
+ yard (= 0.9.21)
265
+
266
+ BUNDLED WITH
267
+ 2.3.26
@@ -1,3 +1,9 @@
1
1
  ---
2
2
  - - :inherit_from
3
3
  - https://raw.githubusercontent.com/powerhome/oss-guide/master/license_rules.yml
4
+ - - :permit
5
+ - MIT AND (BSD-2-Clause OR GPL-2.0-or-later)
6
+ - :who:
7
+ :why:
8
+ :versions: []
9
+ :when: 2024-01-03 17:19:09.467189000 Z
data/docs/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
+ ## [0.4.0] - 2023-01-25
2
+
3
+ - Minimize merge conflcits on structure-self.sql [#240](https://github.com/powerhome/power-tools/pull/240)
4
+ - Let bundler manage LOAD_PATH alone [#111](https://github.com/powerhome/power-tools/pull/111)
5
+
6
+ ## [0.3.0] - 2023-01-25
7
+
8
+ - Allow disabling rails tasks enhancing by @xjunior in [#84](https://github.com/powerhome/power-tools/pull/84)
9
+ - Set GTID purged OFF to avoid table locks by @that-jill in [#85](https://github.com/powerhome/power-tools/pull/85)
10
+
11
+ ## [0.2.0] - 2023-01-25
12
+
13
+ - Set GTID purged OFF to avoid table locks by @xjunior in [#82](https://github.com/powerhome/power-tools/pull/82)
14
+
1
15
  ## [0.1.0] - 2022-12-27
2
16
 
3
17
  - First release of Edgestitch, extracted from NitroMysql.
4
- - Supports all rails >= 6.0 and all ruby >= 2.7
18
+ - Supports all rails >= 6.0 and all ruby >= 2.7
data/edgestitch.gemspec CHANGED
@@ -1,8 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- $LOAD_PATH.push File.expand_path("lib", __dir__)
4
-
5
- require "edgestitch/version"
3
+ require_relative "lib/edgestitch/version"
6
4
 
7
5
  Gem::Specification.new do |spec|
8
6
  spec.name = "edgestitch"
@@ -32,10 +30,11 @@ Gem::Specification.new do |spec|
32
30
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
31
  spec.require_paths = ["lib"]
34
32
 
33
+ spec.add_development_dependency "appraisal", "~> 2.4.1"
35
34
  spec.add_development_dependency "bundler", "~> 2.1"
36
35
  spec.add_development_dependency "license_finder", ">= 7.0"
37
- spec.add_development_dependency "mysql2", "0.5.3"
38
- spec.add_development_dependency "rails", ">= 5.2.8.1", "< 7.1"
36
+ spec.add_development_dependency "mysql2", "0.5.5"
37
+ spec.add_development_dependency "rails", ">= 6.0.6.1", "< 7.1"
39
38
  spec.add_development_dependency "rake", "~> 13.0"
40
39
  spec.add_development_dependency "rspec", "~> 3.0"
41
40
  spec.add_development_dependency "rspec-rails", "~> 5.1.2"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop-powerhome", path: "../../rubocop-powerhome"
6
+ gem "rails", "6.0.6.1"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,265 @@
1
+ PATH
2
+ remote: ../../rubocop-powerhome
3
+ specs:
4
+ rubocop-powerhome (0.5.2)
5
+ rubocop (~> 1.52.0)
6
+ rubocop-performance
7
+ rubocop-rails
8
+ rubocop-rake
9
+ rubocop-rspec
10
+
11
+ PATH
12
+ remote: ..
13
+ specs:
14
+ edgestitch (0.4.0)
15
+
16
+ GEM
17
+ remote: https://rubygems.org/
18
+ specs:
19
+ actioncable (6.0.6.1)
20
+ actionpack (= 6.0.6.1)
21
+ nio4r (~> 2.0)
22
+ websocket-driver (>= 0.6.1)
23
+ actionmailbox (6.0.6.1)
24
+ actionpack (= 6.0.6.1)
25
+ activejob (= 6.0.6.1)
26
+ activerecord (= 6.0.6.1)
27
+ activestorage (= 6.0.6.1)
28
+ activesupport (= 6.0.6.1)
29
+ mail (>= 2.7.1)
30
+ actionmailer (6.0.6.1)
31
+ actionpack (= 6.0.6.1)
32
+ actionview (= 6.0.6.1)
33
+ activejob (= 6.0.6.1)
34
+ mail (~> 2.5, >= 2.5.4)
35
+ rails-dom-testing (~> 2.0)
36
+ actionpack (6.0.6.1)
37
+ actionview (= 6.0.6.1)
38
+ activesupport (= 6.0.6.1)
39
+ rack (~> 2.0, >= 2.0.8)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.0)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (6.0.6.1)
44
+ actionpack (= 6.0.6.1)
45
+ activerecord (= 6.0.6.1)
46
+ activestorage (= 6.0.6.1)
47
+ activesupport (= 6.0.6.1)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (6.0.6.1)
50
+ activesupport (= 6.0.6.1)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.4)
53
+ rails-dom-testing (~> 2.0)
54
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
55
+ activejob (6.0.6.1)
56
+ activesupport (= 6.0.6.1)
57
+ globalid (>= 0.3.6)
58
+ activemodel (6.0.6.1)
59
+ activesupport (= 6.0.6.1)
60
+ activerecord (6.0.6.1)
61
+ activemodel (= 6.0.6.1)
62
+ activesupport (= 6.0.6.1)
63
+ activestorage (6.0.6.1)
64
+ actionpack (= 6.0.6.1)
65
+ activejob (= 6.0.6.1)
66
+ activerecord (= 6.0.6.1)
67
+ marcel (~> 1.0)
68
+ activesupport (6.0.6.1)
69
+ concurrent-ruby (~> 1.0, >= 1.0.2)
70
+ i18n (>= 0.7, < 2)
71
+ minitest (~> 5.1)
72
+ tzinfo (~> 1.1)
73
+ zeitwerk (~> 2.2, >= 2.2.2)
74
+ appraisal (2.4.1)
75
+ bundler
76
+ rake
77
+ thor (>= 0.14.0)
78
+ ast (2.4.2)
79
+ builder (3.2.4)
80
+ concurrent-ruby (1.2.2)
81
+ crass (1.0.6)
82
+ date (3.3.4)
83
+ diff-lcs (1.5.0)
84
+ docile (1.1.5)
85
+ erubi (1.12.0)
86
+ globalid (1.1.0)
87
+ activesupport (>= 5.0)
88
+ i18n (1.14.1)
89
+ concurrent-ruby (~> 1.0)
90
+ json (2.7.1)
91
+ license_finder (7.1.0)
92
+ bundler
93
+ rubyzip (>= 1, < 3)
94
+ thor (~> 1.2)
95
+ tomlrb (>= 1.3, < 2.1)
96
+ with_env (= 1.1.0)
97
+ xml-simple (~> 1.1.9)
98
+ loofah (2.22.0)
99
+ crass (~> 1.0.2)
100
+ nokogiri (>= 1.12.0)
101
+ mail (2.8.1)
102
+ mini_mime (>= 0.1.1)
103
+ net-imap
104
+ net-pop
105
+ net-smtp
106
+ marcel (1.0.2)
107
+ method_source (1.0.0)
108
+ mini_mime (1.1.5)
109
+ minitest (5.20.0)
110
+ mysql2 (0.5.5)
111
+ net-imap (0.4.9)
112
+ date
113
+ net-protocol
114
+ net-pop (0.1.2)
115
+ net-protocol
116
+ net-protocol (0.2.2)
117
+ timeout
118
+ net-smtp (0.4.0)
119
+ net-protocol
120
+ nio4r (2.7.0)
121
+ nokogiri (1.15.5-arm64-darwin)
122
+ racc (~> 1.4)
123
+ nokogiri (1.15.5-x86_64-linux)
124
+ racc (~> 1.4)
125
+ parallel (1.24.0)
126
+ parser (3.2.2.4)
127
+ ast (~> 2.4.1)
128
+ racc
129
+ racc (1.7.3)
130
+ rack (2.2.8)
131
+ rack-test (2.1.0)
132
+ rack (>= 1.3)
133
+ rails (6.0.6.1)
134
+ actioncable (= 6.0.6.1)
135
+ actionmailbox (= 6.0.6.1)
136
+ actionmailer (= 6.0.6.1)
137
+ actionpack (= 6.0.6.1)
138
+ actiontext (= 6.0.6.1)
139
+ actionview (= 6.0.6.1)
140
+ activejob (= 6.0.6.1)
141
+ activemodel (= 6.0.6.1)
142
+ activerecord (= 6.0.6.1)
143
+ activestorage (= 6.0.6.1)
144
+ activesupport (= 6.0.6.1)
145
+ bundler (>= 1.3.0)
146
+ railties (= 6.0.6.1)
147
+ sprockets-rails (>= 2.0.0)
148
+ rails-dom-testing (2.2.0)
149
+ activesupport (>= 5.0.0)
150
+ minitest
151
+ nokogiri (>= 1.6)
152
+ rails-html-sanitizer (1.6.0)
153
+ loofah (~> 2.21)
154
+ nokogiri (~> 1.14)
155
+ railties (6.0.6.1)
156
+ actionpack (= 6.0.6.1)
157
+ activesupport (= 6.0.6.1)
158
+ method_source
159
+ rake (>= 0.8.7)
160
+ thor (>= 0.20.3, < 2.0)
161
+ rainbow (3.1.1)
162
+ rake (13.1.0)
163
+ regexp_parser (2.8.3)
164
+ rexml (3.2.6)
165
+ rspec (3.12.0)
166
+ rspec-core (~> 3.12.0)
167
+ rspec-expectations (~> 3.12.0)
168
+ rspec-mocks (~> 3.12.0)
169
+ rspec-core (3.12.2)
170
+ rspec-support (~> 3.12.0)
171
+ rspec-expectations (3.12.3)
172
+ diff-lcs (>= 1.2.0, < 2.0)
173
+ rspec-support (~> 3.12.0)
174
+ rspec-mocks (3.12.6)
175
+ diff-lcs (>= 1.2.0, < 2.0)
176
+ rspec-support (~> 3.12.0)
177
+ rspec-rails (5.1.2)
178
+ actionpack (>= 5.2)
179
+ activesupport (>= 5.2)
180
+ railties (>= 5.2)
181
+ rspec-core (~> 3.10)
182
+ rspec-expectations (~> 3.10)
183
+ rspec-mocks (~> 3.10)
184
+ rspec-support (~> 3.10)
185
+ rspec-support (3.12.1)
186
+ rubocop (1.52.1)
187
+ json (~> 2.3)
188
+ parallel (~> 1.10)
189
+ parser (>= 3.2.2.3)
190
+ rainbow (>= 2.2.2, < 4.0)
191
+ regexp_parser (>= 1.8, < 3.0)
192
+ rexml (>= 3.2.5, < 4.0)
193
+ rubocop-ast (>= 1.28.0, < 2.0)
194
+ ruby-progressbar (~> 1.7)
195
+ unicode-display_width (>= 2.4.0, < 3.0)
196
+ rubocop-ast (1.30.0)
197
+ parser (>= 3.2.1.0)
198
+ rubocop-capybara (2.20.0)
199
+ rubocop (~> 1.41)
200
+ rubocop-factory_bot (2.24.0)
201
+ rubocop (~> 1.33)
202
+ rubocop-performance (1.20.1)
203
+ rubocop (>= 1.48.1, < 2.0)
204
+ rubocop-ast (>= 1.30.0, < 2.0)
205
+ rubocop-rails (2.23.1)
206
+ activesupport (>= 4.2.0)
207
+ rack (>= 1.1)
208
+ rubocop (>= 1.33.0, < 2.0)
209
+ rubocop-ast (>= 1.30.0, < 2.0)
210
+ rubocop-rake (0.6.0)
211
+ rubocop (~> 1.0)
212
+ rubocop-rspec (2.25.0)
213
+ rubocop (~> 1.40)
214
+ rubocop-capybara (~> 2.17)
215
+ rubocop-factory_bot (~> 2.22)
216
+ ruby-progressbar (1.13.0)
217
+ rubyzip (2.3.2)
218
+ simplecov (0.15.1)
219
+ docile (~> 1.1.0)
220
+ json (>= 1.8, < 3)
221
+ simplecov-html (~> 0.10.0)
222
+ simplecov-html (0.10.2)
223
+ sprockets (4.2.1)
224
+ concurrent-ruby (~> 1.0)
225
+ rack (>= 2.2.4, < 4)
226
+ sprockets-rails (3.4.2)
227
+ actionpack (>= 5.2)
228
+ activesupport (>= 5.2)
229
+ sprockets (>= 3.0.0)
230
+ thor (1.3.0)
231
+ thread_safe (0.3.6)
232
+ timeout (0.4.1)
233
+ tomlrb (2.0.3)
234
+ tzinfo (1.2.11)
235
+ thread_safe (~> 0.1)
236
+ unicode-display_width (2.5.0)
237
+ websocket-driver (0.7.6)
238
+ websocket-extensions (>= 0.1.0)
239
+ websocket-extensions (0.1.5)
240
+ with_env (1.1.0)
241
+ xml-simple (1.1.9)
242
+ rexml
243
+ yard (0.9.21)
244
+ zeitwerk (2.6.12)
245
+
246
+ PLATFORMS
247
+ arm64-darwin-22
248
+ x86_64-linux
249
+
250
+ DEPENDENCIES
251
+ appraisal (~> 2.4.1)
252
+ bundler (~> 2.1)
253
+ edgestitch!
254
+ license_finder (>= 7.0)
255
+ mysql2 (= 0.5.5)
256
+ rails (= 6.0.6.1)
257
+ rake (~> 13.0)
258
+ rspec (~> 3.0)
259
+ rspec-rails (~> 5.1.2)
260
+ rubocop-powerhome!
261
+ simplecov (= 0.15.1)
262
+ yard (= 0.9.21)
263
+
264
+ BUNDLED WITH
265
+ 2.3.26
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop-powerhome", path: "../../rubocop-powerhome"
6
+ gem "rails", "6.1.7.4"
7
+
8
+ gemspec path: "../"