texd 0.4.2 → 0.5.1

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: f6bbbe0b3497e37a0c6aad0d14c4869642b3f515082a3527ce176f7a043b868d
4
- data.tar.gz: 36dc2ada8433384db1e2e39534a9a43d54290e7189398942e92911e7b4801da3
3
+ metadata.gz: 13007e535867b117b4f97bd02f3433bbfdc560be407ad6a116fa780cf122a269
4
+ data.tar.gz: c7a73f29c57adf00c65a4f60eeaf79c0b1b78256ee05b11740f151a2e028336a
5
5
  SHA512:
6
- metadata.gz: 1aadeb5f3c91bb5894d9c207a8f42e34ae359463f22921fc83299157c01b63bbcb7fe3f4ac466f982ae7571aa4081542ba33e6b631811aa48ca03db527af993a
7
- data.tar.gz: b904d72f6f4630665f263a3d4a57ef1fe53e38f3ed46c162bb546bad33d7e555d3d6734e65148e97111e1077279fcb9150998142d371c19cad969b5bfe5c3e64
6
+ metadata.gz: 1c5c48383672de0e8851334fc1456eda171f55567dd184a0b0e3cc43105175eca3486c3cea92239afa1c893d977218265707de757a15ef0b9cbed586e3c0aa95
7
+ data.tar.gz: af632a515da1f48ed83cab8a71138cefebbfb0d4f8a30944717993d0f5f5d4b1cc256890f39d0ed96007df78dde847d61377f262e7f1024153e7494485dcc866
data/.rubocop.yml CHANGED
@@ -1,3 +1,8 @@
1
+ require:
2
+ - rubocop-rails
3
+ - rubocop-rake
4
+ - rubocop-rspec
5
+
1
6
  AllCops:
2
7
  DisplayCopNames: true
3
8
  StyleGuideCopsOnly: false
@@ -331,6 +336,11 @@ Style/TrailingCommaInHashLiteral:
331
336
 
332
337
  ## RSpec Cops - https://docs.rubocop.org/rubocop-rspec/cops_rspec.html
333
338
 
339
+ RSpec:
340
+ Language:
341
+ Expectations:
342
+ - expect_escape
343
+
334
344
  RSpec/ExampleLength:
335
345
  Max: 10
336
346
  CountAsOne: [array, hash, heredoc]
data/CHANGELOG.md CHANGED
@@ -1,6 +1,25 @@
1
1
  ## Unreleased
2
2
 
3
- [Compare changes](https://github.com/digineo/texd-ruby/compare/v0.4.2...master)
3
+ [Compare changes](https://github.com/digineo/texd-ruby/compare/v0.5.1...master)
4
+
5
+ ## v0.5.1 - 2022-10-10
6
+
7
+ **Changes**
8
+
9
+ This is a maintenance release. Expect full compatability with v0.5.0.
10
+
11
+ - update dependencies
12
+ - add specs for rails/main
13
+
14
+ [Compare changes](https://github.com/digineo/texd-ruby/compare/v0.5.0...v0.5.1)
15
+
16
+ ## v0.5.0 - 2022-07-22
17
+
18
+ [Compare changes](https://github.com/digineo/texd-ruby/compare/v0.4.2...v0.5.0)
19
+
20
+ **Changes**
21
+
22
+ - add support for inline files: `<%= texd_inline "contents\n", "filename.txt" %>`
4
23
 
5
24
  ## v0.4.2 - 2022-06-16
6
25
 
data/Gemfile.lock CHANGED
@@ -1,74 +1,74 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- texd (0.4.2)
4
+ texd (0.5.1)
5
5
  multipart-post (~> 2.0)
6
6
  rails (>= 6.0, < 8)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.0.3)
12
- actionpack (= 7.0.3)
13
- activesupport (= 7.0.3)
11
+ actioncable (7.0.4)
12
+ actionpack (= 7.0.4)
13
+ activesupport (= 7.0.4)
14
14
  nio4r (~> 2.0)
15
15
  websocket-driver (>= 0.6.1)
16
- actionmailbox (7.0.3)
17
- actionpack (= 7.0.3)
18
- activejob (= 7.0.3)
19
- activerecord (= 7.0.3)
20
- activestorage (= 7.0.3)
21
- activesupport (= 7.0.3)
16
+ actionmailbox (7.0.4)
17
+ actionpack (= 7.0.4)
18
+ activejob (= 7.0.4)
19
+ activerecord (= 7.0.4)
20
+ activestorage (= 7.0.4)
21
+ activesupport (= 7.0.4)
22
22
  mail (>= 2.7.1)
23
23
  net-imap
24
24
  net-pop
25
25
  net-smtp
26
- actionmailer (7.0.3)
27
- actionpack (= 7.0.3)
28
- actionview (= 7.0.3)
29
- activejob (= 7.0.3)
30
- activesupport (= 7.0.3)
26
+ actionmailer (7.0.4)
27
+ actionpack (= 7.0.4)
28
+ actionview (= 7.0.4)
29
+ activejob (= 7.0.4)
30
+ activesupport (= 7.0.4)
31
31
  mail (~> 2.5, >= 2.5.4)
32
32
  net-imap
33
33
  net-pop
34
34
  net-smtp
35
35
  rails-dom-testing (~> 2.0)
36
- actionpack (7.0.3)
37
- actionview (= 7.0.3)
38
- activesupport (= 7.0.3)
36
+ actionpack (7.0.4)
37
+ actionview (= 7.0.4)
38
+ activesupport (= 7.0.4)
39
39
  rack (~> 2.0, >= 2.2.0)
40
40
  rack-test (>= 0.6.3)
41
41
  rails-dom-testing (~> 2.0)
42
42
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
- actiontext (7.0.3)
44
- actionpack (= 7.0.3)
45
- activerecord (= 7.0.3)
46
- activestorage (= 7.0.3)
47
- activesupport (= 7.0.3)
43
+ actiontext (7.0.4)
44
+ actionpack (= 7.0.4)
45
+ activerecord (= 7.0.4)
46
+ activestorage (= 7.0.4)
47
+ activesupport (= 7.0.4)
48
48
  globalid (>= 0.6.0)
49
49
  nokogiri (>= 1.8.5)
50
- actionview (7.0.3)
51
- activesupport (= 7.0.3)
50
+ actionview (7.0.4)
51
+ activesupport (= 7.0.4)
52
52
  builder (~> 3.1)
53
53
  erubi (~> 1.4)
54
54
  rails-dom-testing (~> 2.0)
55
55
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
- activejob (7.0.3)
57
- activesupport (= 7.0.3)
56
+ activejob (7.0.4)
57
+ activesupport (= 7.0.4)
58
58
  globalid (>= 0.3.6)
59
- activemodel (7.0.3)
60
- activesupport (= 7.0.3)
61
- activerecord (7.0.3)
62
- activemodel (= 7.0.3)
63
- activesupport (= 7.0.3)
64
- activestorage (7.0.3)
65
- actionpack (= 7.0.3)
66
- activejob (= 7.0.3)
67
- activerecord (= 7.0.3)
68
- activesupport (= 7.0.3)
59
+ activemodel (7.0.4)
60
+ activesupport (= 7.0.4)
61
+ activerecord (7.0.4)
62
+ activemodel (= 7.0.4)
63
+ activesupport (= 7.0.4)
64
+ activestorage (7.0.4)
65
+ actionpack (= 7.0.4)
66
+ activejob (= 7.0.4)
67
+ activerecord (= 7.0.4)
68
+ activesupport (= 7.0.4)
69
69
  marcel (~> 1.0)
70
70
  mini_mime (>= 1.1.0)
71
- activesupport (7.0.3)
71
+ activesupport (7.0.4)
72
72
  concurrent-ruby (~> 1.0, >= 1.0.2)
73
73
  i18n (>= 1.6, < 2)
74
74
  minitest (>= 5.1)
@@ -84,13 +84,13 @@ GEM
84
84
  concurrent-ruby (1.1.10)
85
85
  crass (1.0.6)
86
86
  diff-lcs (1.5.0)
87
- digest (3.1.0)
88
- erubi (1.10.0)
87
+ erubi (1.11.0)
89
88
  globalid (1.0.0)
90
89
  activesupport (>= 5.0)
91
- i18n (1.10.0)
90
+ i18n (1.12.0)
92
91
  concurrent-ruby (~> 1.0)
93
- loofah (2.18.0)
92
+ json (2.6.2)
93
+ loofah (2.19.0)
94
94
  crass (~> 1.0.2)
95
95
  nokogiri (>= 1.5.9)
96
96
  mail (2.7.1)
@@ -99,70 +99,64 @@ GEM
99
99
  method_source (1.0.0)
100
100
  mini_mime (1.1.2)
101
101
  mini_portile2 (2.8.0)
102
- minitest (5.16.1)
102
+ minitest (5.16.3)
103
103
  multipart-post (2.2.3)
104
- net-imap (0.2.3)
105
- digest
104
+ net-imap (0.3.1)
106
105
  net-protocol
107
- strscan
108
- net-pop (0.1.1)
109
- digest
106
+ net-pop (0.1.2)
110
107
  net-protocol
111
- timeout
112
108
  net-protocol (0.1.3)
113
109
  timeout
114
- net-smtp (0.3.1)
115
- digest
110
+ net-smtp (0.3.2)
116
111
  net-protocol
117
- timeout
118
112
  nio4r (2.5.8)
119
- nokogiri (1.13.6)
113
+ nokogiri (1.13.8)
120
114
  mini_portile2 (~> 2.8.0)
121
115
  racc (~> 1.4)
122
- nokogiri (1.13.6-x86_64-linux)
116
+ nokogiri (1.13.8-x86_64-linux)
123
117
  racc (~> 1.4)
124
118
  parallel (1.22.1)
125
- parser (3.1.2.0)
119
+ parser (3.1.2.1)
126
120
  ast (~> 2.4.1)
127
- pry (0.13.1)
121
+ pry (0.14.1)
128
122
  coderay (~> 1.1)
129
123
  method_source (~> 1.0)
130
- pry-byebug (3.9.0)
124
+ pry-byebug (3.10.1)
131
125
  byebug (~> 11.0)
132
- pry (~> 0.13.0)
126
+ pry (>= 0.13, < 0.15)
133
127
  racc (1.6.0)
134
- rack (2.2.3.1)
135
- rack-test (2.0.1)
128
+ rack (2.2.4)
129
+ rack-test (2.0.2)
136
130
  rack (>= 1.3)
137
- rails (7.0.3)
138
- actioncable (= 7.0.3)
139
- actionmailbox (= 7.0.3)
140
- actionmailer (= 7.0.3)
141
- actionpack (= 7.0.3)
142
- actiontext (= 7.0.3)
143
- actionview (= 7.0.3)
144
- activejob (= 7.0.3)
145
- activemodel (= 7.0.3)
146
- activerecord (= 7.0.3)
147
- activestorage (= 7.0.3)
148
- activesupport (= 7.0.3)
131
+ rails (7.0.4)
132
+ actioncable (= 7.0.4)
133
+ actionmailbox (= 7.0.4)
134
+ actionmailer (= 7.0.4)
135
+ actionpack (= 7.0.4)
136
+ actiontext (= 7.0.4)
137
+ actionview (= 7.0.4)
138
+ activejob (= 7.0.4)
139
+ activemodel (= 7.0.4)
140
+ activerecord (= 7.0.4)
141
+ activestorage (= 7.0.4)
142
+ activesupport (= 7.0.4)
149
143
  bundler (>= 1.15.0)
150
- railties (= 7.0.3)
144
+ railties (= 7.0.4)
151
145
  rails-dom-testing (2.0.3)
152
146
  activesupport (>= 4.2.0)
153
147
  nokogiri (>= 1.6)
154
148
  rails-html-sanitizer (1.4.3)
155
149
  loofah (~> 2.3)
156
- railties (7.0.3)
157
- actionpack (= 7.0.3)
158
- activesupport (= 7.0.3)
150
+ railties (7.0.4)
151
+ actionpack (= 7.0.4)
152
+ activesupport (= 7.0.4)
159
153
  method_source
160
154
  rake (>= 12.2)
161
155
  thor (~> 1.0)
162
156
  zeitwerk (~> 2.5)
163
157
  rainbow (3.1.1)
164
158
  rake (13.0.6)
165
- regexp_parser (2.5.0)
159
+ regexp_parser (2.6.0)
166
160
  rexml (3.2.5)
167
161
  rspec (3.11.0)
168
162
  rspec-core (~> 3.11.0)
@@ -170,7 +164,7 @@ GEM
170
164
  rspec-mocks (~> 3.11.0)
171
165
  rspec-core (3.11.0)
172
166
  rspec-support (~> 3.11.0)
173
- rspec-expectations (3.11.0)
167
+ rspec-expectations (3.11.1)
174
168
  diff-lcs (>= 1.2.0, < 2.0)
175
169
  rspec-support (~> 3.11.0)
176
170
  rspec-mocks (3.11.1)
@@ -184,40 +178,40 @@ GEM
184
178
  rspec-expectations (~> 3.10)
185
179
  rspec-mocks (~> 3.10)
186
180
  rspec-support (~> 3.10)
187
- rspec-support (3.11.0)
188
- rubocop (1.31.0)
181
+ rspec-support (3.11.1)
182
+ rubocop (1.36.0)
183
+ json (~> 2.3)
189
184
  parallel (~> 1.10)
190
- parser (>= 3.1.0.0)
185
+ parser (>= 3.1.2.1)
191
186
  rainbow (>= 2.2.2, < 4.0)
192
187
  regexp_parser (>= 1.8, < 3.0)
193
188
  rexml (>= 3.2.5, < 4.0)
194
- rubocop-ast (>= 1.18.0, < 2.0)
189
+ rubocop-ast (>= 1.20.1, < 2.0)
195
190
  ruby-progressbar (~> 1.7)
196
191
  unicode-display_width (>= 1.4.0, < 3.0)
197
- rubocop-ast (1.18.0)
192
+ rubocop-ast (1.21.0)
198
193
  parser (>= 3.1.1.0)
199
- rubocop-rails (2.15.1)
194
+ rubocop-rails (2.16.1)
200
195
  activesupport (>= 4.2.0)
201
196
  rack (>= 1.1)
202
- rubocop (>= 1.7.0, < 2.0)
197
+ rubocop (>= 1.33.0, < 2.0)
203
198
  rubocop-rake (0.6.0)
204
199
  rubocop (~> 1.0)
205
- rubocop-rspec (2.11.1)
206
- rubocop (~> 1.19)
200
+ rubocop-rspec (2.13.2)
201
+ rubocop (~> 1.33)
207
202
  ruby-progressbar (1.11.0)
208
- strscan (3.0.3)
209
203
  thor (1.2.1)
210
204
  timeout (0.3.0)
211
- tzinfo (2.0.4)
205
+ tzinfo (2.0.5)
212
206
  concurrent-ruby (~> 1.0)
213
- unicode-display_width (2.2.0)
207
+ unicode-display_width (2.3.0)
214
208
  webrick (1.7.0)
215
209
  websocket-driver (0.7.5)
216
210
  websocket-extensions (>= 0.1.0)
217
211
  websocket-extensions (0.1.5)
218
212
  yard (0.9.28)
219
213
  webrick (~> 1.7.0)
220
- zeitwerk (2.6.0)
214
+ zeitwerk (2.6.1)
221
215
 
222
216
  PLATFORMS
223
217
  ruby
data/Makefile CHANGED
@@ -1,38 +1,49 @@
1
1
  SPEC =
2
2
 
3
3
  .PHONY: test
4
- test: rails60 rails61 rails70 rubocop
4
+ test: rails-6.0 rails-6.1 rails-7.0 rubocop # exclude rails-main
5
5
 
6
- .PHONY: rails60
7
- rails60:
6
+ # TODO: make rails-* tasks DRY?
7
+
8
+ .PHONY: rails-6.0
9
+ rails-6.0:
10
+ ifeq ($(SPEC),)
11
+ export BUNDLE_GEMFILE=gemfiles/rails-6.0/Gemfile && bundle --quiet && bundle exec rake spec
12
+ else
13
+ export BUNDLE_GEMFILE=gemfiles/rails-6.0/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
14
+ endif
15
+
16
+ .PHONY: rails-6.1
17
+ rails-6.1:
8
18
  ifeq ($(SPEC),)
9
- export BUNDLE_GEMFILE=gemfiles/rails-6.0 && bundle --quiet && bundle exec rake spec
19
+ export BUNDLE_GEMFILE=gemfiles/rails-6.1/Gemfile && bundle --quiet && bundle exec rake spec
10
20
  else
11
- export BUNDLE_GEMFILE=gemfiles/rails-6.0 && bundle --quiet && bundle exec rspec $(SPEC)
21
+ export BUNDLE_GEMFILE=gemfiles/rails-6.1/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
12
22
  endif
13
23
 
14
- .PHONY: rails61
15
- rails61:
24
+ .PHONY: rails-7.0
25
+ rails-7.0:
16
26
  ifeq ($(SPEC),)
17
- export BUNDLE_GEMFILE=gemfiles/rails-6.1 && bundle --quiet && bundle exec rake spec
27
+ export BUNDLE_GEMFILE=gemfiles/rails-7.0/Gemfile && bundle --quiet && bundle exec rake spec
18
28
  else
19
- export BUNDLE_GEMFILE=gemfiles/rails-6.1 && bundle --quiet && bundle exec rspec $(SPEC)
29
+ export BUNDLE_GEMFILE=gemfiles/rails-7.0/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
20
30
  endif
21
31
 
22
- .PHONY: rails70
23
- rails70:
32
+ .PHONY: rails-main
33
+ rails-main:
24
34
  ifeq ($(SPEC),)
25
- export BUNDLE_GEMFILE=gemfiles/rails-7.0 && bundle --quiet && bundle exec rake spec
35
+ export BUNDLE_GEMFILE=gemfiles/rails-main/Gemfile && bundle --quiet && bundle exec rake spec
26
36
  else
27
- export BUNDLE_GEMFILE=gemfiles/rails-7.0 && bundle --quiet && bundle exec rspec $(SPEC)
37
+ export BUNDLE_GEMFILE=gemfiles/rails-main/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
28
38
  endif
29
39
 
30
40
  .PHONY: update
31
41
  update:
32
- export BUNDLE_GEMFILE=gemfiles/rails-6.0 && bundle update
33
- export BUNDLE_GEMFILE=gemfiles/rails-6.1 && bundle update
34
- export BUNDLE_GEMFILE=gemfiles/rails-7.0 && bundle update
35
- export BUNDLE_GEMFILE=Gemfile && bundle update
42
+ export BUNDLE_GEMFILE=gemfiles/rails-6.0/Gemfile && bundle update
43
+ export BUNDLE_GEMFILE=gemfiles/rails-6.1/Gemfile && bundle update
44
+ export BUNDLE_GEMFILE=gemfiles/rails-7.0/Gemfile && bundle update
45
+ export BUNDLE_GEMFILE=gemfiles/rails-main/Gemfile && bundle update
46
+ export BUNDLE_GEMFILE=Gemfile && bundle update
36
47
 
37
48
  .PHONY: rubocop
38
49
  rubocop:
@@ -52,4 +63,7 @@ texd-docker:
52
63
  -v $$(pwd)/tmp/jobs:/texd \
53
64
  -v $$(pwd)/tmp/refs:/refs \
54
65
  -u $$(id -u):$$(id -g) \
55
- digineode/texd --reference-store dir:///refs --keep-jobs always
66
+ digineode/texd \
67
+ --reference-store dir:///refs \
68
+ --retention-policy=purge-on-start \
69
+ --keep-jobs always
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  source "https://rubygems.org"
4
- gemspec path: ".."
4
+ gemspec path: "../.."
5
5
 
6
6
  gem "pry-byebug"
7
7
  gem "rails", "~> 6.0.0"
@@ -1,63 +1,63 @@
1
1
  PATH
2
- remote: ..
2
+ remote: ../..
3
3
  specs:
4
- texd (0.4.2)
4
+ texd (0.5.1)
5
5
  multipart-post (~> 2.0)
6
6
  rails (>= 6.0, < 8)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (6.0.5)
12
- actionpack (= 6.0.5)
11
+ actioncable (6.0.6)
12
+ actionpack (= 6.0.6)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailbox (6.0.5)
16
- actionpack (= 6.0.5)
17
- activejob (= 6.0.5)
18
- activerecord (= 6.0.5)
19
- activestorage (= 6.0.5)
20
- activesupport (= 6.0.5)
15
+ actionmailbox (6.0.6)
16
+ actionpack (= 6.0.6)
17
+ activejob (= 6.0.6)
18
+ activerecord (= 6.0.6)
19
+ activestorage (= 6.0.6)
20
+ activesupport (= 6.0.6)
21
21
  mail (>= 2.7.1)
22
- actionmailer (6.0.5)
23
- actionpack (= 6.0.5)
24
- actionview (= 6.0.5)
25
- activejob (= 6.0.5)
22
+ actionmailer (6.0.6)
23
+ actionpack (= 6.0.6)
24
+ actionview (= 6.0.6)
25
+ activejob (= 6.0.6)
26
26
  mail (~> 2.5, >= 2.5.4)
27
27
  rails-dom-testing (~> 2.0)
28
- actionpack (6.0.5)
29
- actionview (= 6.0.5)
30
- activesupport (= 6.0.5)
28
+ actionpack (6.0.6)
29
+ actionview (= 6.0.6)
30
+ activesupport (= 6.0.6)
31
31
  rack (~> 2.0, >= 2.0.8)
32
32
  rack-test (>= 0.6.3)
33
33
  rails-dom-testing (~> 2.0)
34
34
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
- actiontext (6.0.5)
36
- actionpack (= 6.0.5)
37
- activerecord (= 6.0.5)
38
- activestorage (= 6.0.5)
39
- activesupport (= 6.0.5)
35
+ actiontext (6.0.6)
36
+ actionpack (= 6.0.6)
37
+ activerecord (= 6.0.6)
38
+ activestorage (= 6.0.6)
39
+ activesupport (= 6.0.6)
40
40
  nokogiri (>= 1.8.5)
41
- actionview (6.0.5)
42
- activesupport (= 6.0.5)
41
+ actionview (6.0.6)
42
+ activesupport (= 6.0.6)
43
43
  builder (~> 3.1)
44
44
  erubi (~> 1.4)
45
45
  rails-dom-testing (~> 2.0)
46
46
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
- activejob (6.0.5)
48
- activesupport (= 6.0.5)
47
+ activejob (6.0.6)
48
+ activesupport (= 6.0.6)
49
49
  globalid (>= 0.3.6)
50
- activemodel (6.0.5)
51
- activesupport (= 6.0.5)
52
- activerecord (6.0.5)
53
- activemodel (= 6.0.5)
54
- activesupport (= 6.0.5)
55
- activestorage (6.0.5)
56
- actionpack (= 6.0.5)
57
- activejob (= 6.0.5)
58
- activerecord (= 6.0.5)
50
+ activemodel (6.0.6)
51
+ activesupport (= 6.0.6)
52
+ activerecord (6.0.6)
53
+ activemodel (= 6.0.6)
54
+ activesupport (= 6.0.6)
55
+ activestorage (6.0.6)
56
+ actionpack (= 6.0.6)
57
+ activejob (= 6.0.6)
58
+ activerecord (= 6.0.6)
59
59
  marcel (~> 1.0)
60
- activesupport (6.0.5)
60
+ activesupport (6.0.6)
61
61
  concurrent-ruby (~> 1.0, >= 1.0.2)
62
62
  i18n (>= 0.7, < 2)
63
63
  minitest (~> 5.1)
@@ -73,12 +73,12 @@ GEM
73
73
  concurrent-ruby (1.1.10)
74
74
  crass (1.0.6)
75
75
  diff-lcs (1.5.0)
76
- erubi (1.10.0)
76
+ erubi (1.11.0)
77
77
  globalid (1.0.0)
78
78
  activesupport (>= 5.0)
79
- i18n (1.10.0)
79
+ i18n (1.12.0)
80
80
  concurrent-ruby (~> 1.0)
81
- loofah (2.18.0)
81
+ loofah (2.19.0)
82
82
  crass (~> 1.0.2)
83
83
  nokogiri (>= 1.5.9)
84
84
  mail (2.7.1)
@@ -87,47 +87,47 @@ GEM
87
87
  method_source (1.0.0)
88
88
  mini_mime (1.1.2)
89
89
  mini_portile2 (2.8.0)
90
- minitest (5.16.1)
90
+ minitest (5.16.3)
91
91
  multipart-post (2.2.3)
92
92
  nio4r (2.5.8)
93
- nokogiri (1.13.6)
93
+ nokogiri (1.13.8)
94
94
  mini_portile2 (~> 2.8.0)
95
95
  racc (~> 1.4)
96
- nokogiri (1.13.6-x86_64-linux)
96
+ nokogiri (1.13.8-x86_64-linux)
97
97
  racc (~> 1.4)
98
- pry (0.13.1)
98
+ pry (0.14.1)
99
99
  coderay (~> 1.1)
100
100
  method_source (~> 1.0)
101
- pry-byebug (3.9.0)
101
+ pry-byebug (3.10.1)
102
102
  byebug (~> 11.0)
103
- pry (~> 0.13.0)
103
+ pry (>= 0.13, < 0.15)
104
104
  racc (1.6.0)
105
- rack (2.2.3.1)
106
- rack-test (2.0.1)
105
+ rack (2.2.4)
106
+ rack-test (2.0.2)
107
107
  rack (>= 1.3)
108
- rails (6.0.5)
109
- actioncable (= 6.0.5)
110
- actionmailbox (= 6.0.5)
111
- actionmailer (= 6.0.5)
112
- actionpack (= 6.0.5)
113
- actiontext (= 6.0.5)
114
- actionview (= 6.0.5)
115
- activejob (= 6.0.5)
116
- activemodel (= 6.0.5)
117
- activerecord (= 6.0.5)
118
- activestorage (= 6.0.5)
119
- activesupport (= 6.0.5)
108
+ rails (6.0.6)
109
+ actioncable (= 6.0.6)
110
+ actionmailbox (= 6.0.6)
111
+ actionmailer (= 6.0.6)
112
+ actionpack (= 6.0.6)
113
+ actiontext (= 6.0.6)
114
+ actionview (= 6.0.6)
115
+ activejob (= 6.0.6)
116
+ activemodel (= 6.0.6)
117
+ activerecord (= 6.0.6)
118
+ activestorage (= 6.0.6)
119
+ activesupport (= 6.0.6)
120
120
  bundler (>= 1.3.0)
121
- railties (= 6.0.5)
121
+ railties (= 6.0.6)
122
122
  sprockets-rails (>= 2.0.0)
123
123
  rails-dom-testing (2.0.3)
124
124
  activesupport (>= 4.2.0)
125
125
  nokogiri (>= 1.6)
126
126
  rails-html-sanitizer (1.4.3)
127
127
  loofah (~> 2.3)
128
- railties (6.0.5)
129
- actionpack (= 6.0.5)
130
- activesupport (= 6.0.5)
128
+ railties (6.0.6)
129
+ actionpack (= 6.0.6)
130
+ activesupport (= 6.0.6)
131
131
  method_source
132
132
  rake (>= 0.8.7)
133
133
  thor (>= 0.20.3, < 2.0)
@@ -138,7 +138,7 @@ GEM
138
138
  rspec-mocks (~> 3.11.0)
139
139
  rspec-core (3.11.0)
140
140
  rspec-support (~> 3.11.0)
141
- rspec-expectations (3.11.0)
141
+ rspec-expectations (3.11.1)
142
142
  diff-lcs (>= 1.2.0, < 2.0)
143
143
  rspec-support (~> 3.11.0)
144
144
  rspec-mocks (3.11.1)
@@ -152,7 +152,7 @@ GEM
152
152
  rspec-expectations (~> 3.10)
153
153
  rspec-mocks (~> 3.10)
154
154
  rspec-support (~> 3.10)
155
- rspec-support (3.11.0)
155
+ rspec-support (3.11.1)
156
156
  sprockets (4.1.1)
157
157
  concurrent-ruby (~> 1.0)
158
158
  rack (> 1, < 3)
@@ -162,12 +162,12 @@ GEM
162
162
  sprockets (>= 3.0.0)
163
163
  thor (1.2.1)
164
164
  thread_safe (0.3.6)
165
- tzinfo (1.2.9)
165
+ tzinfo (1.2.10)
166
166
  thread_safe (~> 0.1)
167
167
  websocket-driver (0.7.5)
168
168
  websocket-extensions (>= 0.1.0)
169
169
  websocket-extensions (0.1.5)
170
- zeitwerk (2.6.0)
170
+ zeitwerk (2.6.1)
171
171
 
172
172
  PLATFORMS
173
173
  ruby
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  source "https://rubygems.org"
4
- gemspec path: ".."
4
+ gemspec path: "../.."
5
5
 
6
6
  gem "pry-byebug"
7
7
  gem "rails", "~> 6.1.0"