texd 0.3.1 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +39 -3
- data/Gemfile.lock +82 -79
- data/Makefile +1 -1
- data/README.md +38 -10
- data/gemfiles/rails-6.0.lock +67 -62
- data/gemfiles/rails-6.1.lock +69 -64
- data/gemfiles/rails-7.0.lock +72 -69
- data/lib/texd/client.rb +17 -1
- data/lib/texd/config.rb +46 -4
- data/lib/texd/document.rb +6 -0
- data/lib/texd/version.rb +1 -1
- data/lib/texd.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e81fb33476966032e12c55d7078c824f82e249ad5191bb499a6f0047e6748603
|
4
|
+
data.tar.gz: 41860606ab46c0006a33b740120c8441a8a29d2b48b577ef133a4acff8a5bd8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 352f6eca45f3e55b0e0df036d59f21f4d77dd7567a6c92853ae5766b6a6b3e2d751a9d9a68f4f353c95435caf6cdfed843f0774a4fd64d3fc0ba0ec33a90405d
|
7
|
+
data.tar.gz: 71f761e43adf6268567cd49285a8fe542887e4654499dc297fe7d26feb6882803474702704f6493ece465a339e8ba2283cfd4e0e114f6ed153b7e2c98f2c99b5
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,41 @@
|
|
1
|
-
##
|
1
|
+
## Unreleased
|
2
2
|
|
3
|
-
|
3
|
+
[Compare changes](https://github.com/digineo/texd-ruby/compare/v0.4.1...master)
|
4
4
|
|
5
|
-
-
|
5
|
+
## v0.4.1 - 2022-06-16
|
6
|
+
|
7
|
+
[Compare changes](https://github.com/digineo/texd-ruby/compare/v0.3.2...v0.4.1)
|
8
|
+
|
9
|
+
**Changes**
|
10
|
+
|
11
|
+
- add support for configurable error handling
|
12
|
+
|
13
|
+
## v0.3.2 - 2022-03-28
|
14
|
+
|
15
|
+
[Compare changes](https://github.com/digineo/texd-ruby/compare/v0.2.2...v0.3.2)
|
16
|
+
|
17
|
+
**Changes**
|
18
|
+
|
19
|
+
- add support for Texd reference store
|
20
|
+
- add support for Basic Auth credentials
|
21
|
+
|
22
|
+
## v0.2.2 - 2022-03-22
|
23
|
+
|
24
|
+
[Compare changes](https://github.com/digineo/texd-ruby/compare/v0.1.0...v0.2.2)
|
25
|
+
|
26
|
+
**Fixes**
|
27
|
+
|
28
|
+
- `escape` helper now handles nil values
|
29
|
+
- improve Ruby 3.x compatability
|
30
|
+
|
31
|
+
**Changes**
|
32
|
+
|
33
|
+
- state arguments for `Texd.render`/`Texd::Document.render` explicitly
|
34
|
+
(forbid no arbitrary arguments)
|
35
|
+
- refactor template locals
|
36
|
+
|
37
|
+
## v0.1.0 - 2022-03-14
|
38
|
+
|
39
|
+
[Compare changes](https://github.com/digineo/texd-ruby/compare/4562035e...v0.1.0)
|
40
|
+
|
41
|
+
- First public release
|
data/Gemfile.lock
CHANGED
@@ -1,74 +1,74 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
texd (0.
|
4
|
+
texd (0.4.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.
|
12
|
-
actionpack (= 7.0.
|
13
|
-
activesupport (= 7.0.
|
11
|
+
actioncable (7.0.3)
|
12
|
+
actionpack (= 7.0.3)
|
13
|
+
activesupport (= 7.0.3)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (7.0.
|
17
|
-
actionpack (= 7.0.
|
18
|
-
activejob (= 7.0.
|
19
|
-
activerecord (= 7.0.
|
20
|
-
activestorage (= 7.0.
|
21
|
-
activesupport (= 7.0.
|
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)
|
22
22
|
mail (>= 2.7.1)
|
23
23
|
net-imap
|
24
24
|
net-pop
|
25
25
|
net-smtp
|
26
|
-
actionmailer (7.0.
|
27
|
-
actionpack (= 7.0.
|
28
|
-
actionview (= 7.0.
|
29
|
-
activejob (= 7.0.
|
30
|
-
activesupport (= 7.0.
|
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)
|
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.
|
37
|
-
actionview (= 7.0.
|
38
|
-
activesupport (= 7.0.
|
36
|
+
actionpack (7.0.3)
|
37
|
+
actionview (= 7.0.3)
|
38
|
+
activesupport (= 7.0.3)
|
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.
|
44
|
-
actionpack (= 7.0.
|
45
|
-
activerecord (= 7.0.
|
46
|
-
activestorage (= 7.0.
|
47
|
-
activesupport (= 7.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)
|
48
48
|
globalid (>= 0.6.0)
|
49
49
|
nokogiri (>= 1.8.5)
|
50
|
-
actionview (7.0.
|
51
|
-
activesupport (= 7.0.
|
50
|
+
actionview (7.0.3)
|
51
|
+
activesupport (= 7.0.3)
|
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.
|
57
|
-
activesupport (= 7.0.
|
56
|
+
activejob (7.0.3)
|
57
|
+
activesupport (= 7.0.3)
|
58
58
|
globalid (>= 0.3.6)
|
59
|
-
activemodel (7.0.
|
60
|
-
activesupport (= 7.0.
|
61
|
-
activerecord (7.0.
|
62
|
-
activemodel (= 7.0.
|
63
|
-
activesupport (= 7.0.
|
64
|
-
activestorage (7.0.
|
65
|
-
actionpack (= 7.0.
|
66
|
-
activejob (= 7.0.
|
67
|
-
activerecord (= 7.0.
|
68
|
-
activesupport (= 7.0.
|
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)
|
69
69
|
marcel (~> 1.0)
|
70
70
|
mini_mime (>= 1.1.0)
|
71
|
-
activesupport (7.0.
|
71
|
+
activesupport (7.0.3)
|
72
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
73
|
i18n (>= 1.6, < 2)
|
74
74
|
minitest (>= 5.1)
|
@@ -77,7 +77,7 @@ GEM
|
|
77
77
|
builder (3.2.4)
|
78
78
|
byebug (11.1.3)
|
79
79
|
coderay (1.1.3)
|
80
|
-
combustion (1.3.
|
80
|
+
combustion (1.3.7)
|
81
81
|
activesupport (>= 3.0.0)
|
82
82
|
railties (>= 3.0.0)
|
83
83
|
thor (>= 0.14.6)
|
@@ -90,8 +90,7 @@ GEM
|
|
90
90
|
activesupport (>= 5.0)
|
91
91
|
i18n (1.10.0)
|
92
92
|
concurrent-ruby (~> 1.0)
|
93
|
-
|
94
|
-
loofah (2.15.0)
|
93
|
+
loofah (2.18.0)
|
95
94
|
crass (~> 1.0.2)
|
96
95
|
nokogiri (>= 1.5.9)
|
97
96
|
mail (2.7.1)
|
@@ -99,8 +98,9 @@ GEM
|
|
99
98
|
marcel (1.0.2)
|
100
99
|
method_source (1.0.0)
|
101
100
|
mini_mime (1.1.2)
|
102
|
-
|
103
|
-
|
101
|
+
mini_portile2 (2.8.0)
|
102
|
+
minitest (5.16.0)
|
103
|
+
multipart-post (2.2.3)
|
104
104
|
net-imap (0.2.3)
|
105
105
|
digest
|
106
106
|
net-protocol
|
@@ -109,18 +109,20 @@ GEM
|
|
109
109
|
digest
|
110
110
|
net-protocol
|
111
111
|
timeout
|
112
|
-
net-protocol (0.1.
|
113
|
-
io-wait
|
112
|
+
net-protocol (0.1.3)
|
114
113
|
timeout
|
115
114
|
net-smtp (0.3.1)
|
116
115
|
digest
|
117
116
|
net-protocol
|
118
117
|
timeout
|
119
118
|
nio4r (2.5.8)
|
120
|
-
nokogiri (1.13.
|
119
|
+
nokogiri (1.13.6)
|
120
|
+
mini_portile2 (~> 2.8.0)
|
121
121
|
racc (~> 1.4)
|
122
|
-
|
123
|
-
|
122
|
+
nokogiri (1.13.6-x86_64-linux)
|
123
|
+
racc (~> 1.4)
|
124
|
+
parallel (1.22.1)
|
125
|
+
parser (3.1.2.0)
|
124
126
|
ast (~> 2.4.1)
|
125
127
|
pry (0.13.1)
|
126
128
|
coderay (~> 1.1)
|
@@ -129,38 +131,38 @@ GEM
|
|
129
131
|
byebug (~> 11.0)
|
130
132
|
pry (~> 0.13.0)
|
131
133
|
racc (1.6.0)
|
132
|
-
rack (2.2.3)
|
134
|
+
rack (2.2.3.1)
|
133
135
|
rack-test (1.1.0)
|
134
136
|
rack (>= 1.0, < 3)
|
135
|
-
rails (7.0.
|
136
|
-
actioncable (= 7.0.
|
137
|
-
actionmailbox (= 7.0.
|
138
|
-
actionmailer (= 7.0.
|
139
|
-
actionpack (= 7.0.
|
140
|
-
actiontext (= 7.0.
|
141
|
-
actionview (= 7.0.
|
142
|
-
activejob (= 7.0.
|
143
|
-
activemodel (= 7.0.
|
144
|
-
activerecord (= 7.0.
|
145
|
-
activestorage (= 7.0.
|
146
|
-
activesupport (= 7.0.
|
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)
|
147
149
|
bundler (>= 1.15.0)
|
148
|
-
railties (= 7.0.
|
150
|
+
railties (= 7.0.3)
|
149
151
|
rails-dom-testing (2.0.3)
|
150
152
|
activesupport (>= 4.2.0)
|
151
153
|
nokogiri (>= 1.6)
|
152
|
-
rails-html-sanitizer (1.4.
|
154
|
+
rails-html-sanitizer (1.4.3)
|
153
155
|
loofah (~> 2.3)
|
154
|
-
railties (7.0.
|
155
|
-
actionpack (= 7.0.
|
156
|
-
activesupport (= 7.0.
|
156
|
+
railties (7.0.3)
|
157
|
+
actionpack (= 7.0.3)
|
158
|
+
activesupport (= 7.0.3)
|
157
159
|
method_source
|
158
160
|
rake (>= 12.2)
|
159
161
|
thor (~> 1.0)
|
160
162
|
zeitwerk (~> 2.5)
|
161
163
|
rainbow (3.1.1)
|
162
164
|
rake (13.0.6)
|
163
|
-
regexp_parser (2.
|
165
|
+
regexp_parser (2.5.0)
|
164
166
|
rexml (3.2.5)
|
165
167
|
rspec (3.11.0)
|
166
168
|
rspec-core (~> 3.11.0)
|
@@ -171,10 +173,10 @@ GEM
|
|
171
173
|
rspec-expectations (3.11.0)
|
172
174
|
diff-lcs (>= 1.2.0, < 2.0)
|
173
175
|
rspec-support (~> 3.11.0)
|
174
|
-
rspec-mocks (3.11.
|
176
|
+
rspec-mocks (3.11.1)
|
175
177
|
diff-lcs (>= 1.2.0, < 2.0)
|
176
178
|
rspec-support (~> 3.11.0)
|
177
|
-
rspec-rails (5.1.
|
179
|
+
rspec-rails (5.1.2)
|
178
180
|
actionpack (>= 5.2)
|
179
181
|
activesupport (>= 5.2)
|
180
182
|
railties (>= 5.2)
|
@@ -183,29 +185,29 @@ GEM
|
|
183
185
|
rspec-mocks (~> 3.10)
|
184
186
|
rspec-support (~> 3.10)
|
185
187
|
rspec-support (3.11.0)
|
186
|
-
rubocop (1.
|
188
|
+
rubocop (1.30.1)
|
187
189
|
parallel (~> 1.10)
|
188
190
|
parser (>= 3.1.0.0)
|
189
191
|
rainbow (>= 2.2.2, < 4.0)
|
190
192
|
regexp_parser (>= 1.8, < 3.0)
|
191
|
-
rexml
|
192
|
-
rubocop-ast (>= 1.
|
193
|
+
rexml (>= 3.2.5, < 4.0)
|
194
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
193
195
|
ruby-progressbar (~> 1.7)
|
194
196
|
unicode-display_width (>= 1.4.0, < 3.0)
|
195
|
-
rubocop-ast (1.
|
197
|
+
rubocop-ast (1.18.0)
|
196
198
|
parser (>= 3.1.1.0)
|
197
|
-
rubocop-rails (2.
|
199
|
+
rubocop-rails (2.15.0)
|
198
200
|
activesupport (>= 4.2.0)
|
199
201
|
rack (>= 1.1)
|
200
202
|
rubocop (>= 1.7.0, < 2.0)
|
201
203
|
rubocop-rake (0.6.0)
|
202
204
|
rubocop (~> 1.0)
|
203
|
-
rubocop-rspec (2.
|
205
|
+
rubocop-rspec (2.11.1)
|
204
206
|
rubocop (~> 1.19)
|
205
207
|
ruby-progressbar (1.11.0)
|
206
|
-
strscan (3.0.
|
208
|
+
strscan (3.0.3)
|
207
209
|
thor (1.2.1)
|
208
|
-
timeout (0.
|
210
|
+
timeout (0.3.0)
|
209
211
|
tzinfo (2.0.4)
|
210
212
|
concurrent-ruby (~> 1.0)
|
211
213
|
unicode-display_width (2.1.0)
|
@@ -213,11 +215,12 @@ GEM
|
|
213
215
|
websocket-driver (0.7.5)
|
214
216
|
websocket-extensions (>= 0.1.0)
|
215
217
|
websocket-extensions (0.1.5)
|
216
|
-
yard (0.9.
|
218
|
+
yard (0.9.28)
|
217
219
|
webrick (~> 1.7.0)
|
218
|
-
zeitwerk (2.
|
220
|
+
zeitwerk (2.6.0)
|
219
221
|
|
220
222
|
PLATFORMS
|
223
|
+
ruby
|
221
224
|
x86_64-linux
|
222
225
|
|
223
226
|
DEPENDENCIES
|
data/Makefile
CHANGED
data/README.md
CHANGED
@@ -21,7 +21,7 @@ Install the gem and add to the application's Gemfile by executing:
|
|
21
21
|
|
22
22
|
## Configuration
|
23
23
|
|
24
|
-
|
24
|
+
Before you can use texd, you need to tell it where your instance is located.
|
25
25
|
|
26
26
|
By default, this gem reads the `TEXD_ENDPOINT` environment variable and falls
|
27
27
|
back to `http://localhost:2201/render`, should it be empty.
|
@@ -38,15 +38,18 @@ end
|
|
38
38
|
|
39
39
|
```rb
|
40
40
|
Texd.configure do |config|
|
41
|
-
config.endpoint
|
42
|
-
config.open_timeout
|
43
|
-
config.read_timeout
|
44
|
-
config.write_timeout
|
45
|
-
config.error_format
|
46
|
-
config.
|
47
|
-
config.
|
48
|
-
config.
|
49
|
-
config.
|
41
|
+
config.endpoint = ENV.fetch("TEXD_ENDPOINT", "http://localhost:2201/")
|
42
|
+
config.open_timeout = ENV.fetch("TEXD_OPEN_TIMEOUT", 60)
|
43
|
+
config.read_timeout = ENV.fetch("TEXD_READ_TIMEOUT", 180)
|
44
|
+
config.write_timeout = ENV.fetch("TEXD_WRITE_TIMEOUT", 60)
|
45
|
+
config.error_format = ENV.fetch("TEXD_ERRORS", "full")
|
46
|
+
config.error_handler = ENV.fetch("TEXD_ERROR_HANDLER", "raise")
|
47
|
+
config.tex_engine = ENV["TEXD_ENGINE"]
|
48
|
+
config.tex_image = ENV["TEXD_IMAGE"]
|
49
|
+
config.helpers = []
|
50
|
+
config.lookup_paths = []
|
51
|
+
config.lookup_paths = [] # Rails.root.join("app/tex") is always prepended
|
52
|
+
config.ref_cache_size = 128
|
50
53
|
end
|
51
54
|
```
|
52
55
|
|
@@ -174,6 +177,31 @@ All errors inherit from `Texd::Client::RenderError` and should have
|
|
174
177
|
a `details` attribute (a Hash) containing the actual error returned
|
175
178
|
from the server.
|
176
179
|
|
180
|
+
## Global error reporting
|
181
|
+
|
182
|
+
texd can be configured with external error reporting, like Sentry.
|
183
|
+
|
184
|
+
This example sends the LaTeX compilation log and compiled main input `.tex`
|
185
|
+
file to Sentry:
|
186
|
+
|
187
|
+
```ruby
|
188
|
+
Texd.configure do |config|
|
189
|
+
config.error_handler = ->(err, doc) {
|
190
|
+
Sentry.set_context "texd", {
|
191
|
+
details: err.details, # if config.error_format == "json"
|
192
|
+
logs: err.logs, # otherwise
|
193
|
+
}.compact
|
194
|
+
Sentry.capture_exception(err)
|
195
|
+
|
196
|
+
raise err # re-raise, so that your code can decide further actions
|
197
|
+
}
|
198
|
+
end
|
199
|
+
```
|
200
|
+
|
201
|
+
`config.error_handler` must respond to `call`, and receives the error (an instance
|
202
|
+
of `Texd::Client::CompilationError`) and the document context (an instance of
|
203
|
+
`Texd::Document::Compilation`).
|
204
|
+
|
177
205
|
## Development
|
178
206
|
|
179
207
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
data/gemfiles/rails-6.0.lock
CHANGED
@@ -1,63 +1,63 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
texd (0.
|
4
|
+
texd (0.4.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.
|
12
|
-
actionpack (= 6.0.
|
11
|
+
actioncable (6.0.5)
|
12
|
+
actionpack (= 6.0.5)
|
13
13
|
nio4r (~> 2.0)
|
14
14
|
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (6.0.
|
16
|
-
actionpack (= 6.0.
|
17
|
-
activejob (= 6.0.
|
18
|
-
activerecord (= 6.0.
|
19
|
-
activestorage (= 6.0.
|
20
|
-
activesupport (= 6.0.
|
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)
|
21
21
|
mail (>= 2.7.1)
|
22
|
-
actionmailer (6.0.
|
23
|
-
actionpack (= 6.0.
|
24
|
-
actionview (= 6.0.
|
25
|
-
activejob (= 6.0.
|
22
|
+
actionmailer (6.0.5)
|
23
|
+
actionpack (= 6.0.5)
|
24
|
+
actionview (= 6.0.5)
|
25
|
+
activejob (= 6.0.5)
|
26
26
|
mail (~> 2.5, >= 2.5.4)
|
27
27
|
rails-dom-testing (~> 2.0)
|
28
|
-
actionpack (6.0.
|
29
|
-
actionview (= 6.0.
|
30
|
-
activesupport (= 6.0.
|
28
|
+
actionpack (6.0.5)
|
29
|
+
actionview (= 6.0.5)
|
30
|
+
activesupport (= 6.0.5)
|
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.
|
36
|
-
actionpack (= 6.0.
|
37
|
-
activerecord (= 6.0.
|
38
|
-
activestorage (= 6.0.
|
39
|
-
activesupport (= 6.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)
|
40
40
|
nokogiri (>= 1.8.5)
|
41
|
-
actionview (6.0.
|
42
|
-
activesupport (= 6.0.
|
41
|
+
actionview (6.0.5)
|
42
|
+
activesupport (= 6.0.5)
|
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.
|
48
|
-
activesupport (= 6.0.
|
47
|
+
activejob (6.0.5)
|
48
|
+
activesupport (= 6.0.5)
|
49
49
|
globalid (>= 0.3.6)
|
50
|
-
activemodel (6.0.
|
51
|
-
activesupport (= 6.0.
|
52
|
-
activerecord (6.0.
|
53
|
-
activemodel (= 6.0.
|
54
|
-
activesupport (= 6.0.
|
55
|
-
activestorage (6.0.
|
56
|
-
actionpack (= 6.0.
|
57
|
-
activejob (= 6.0.
|
58
|
-
activerecord (= 6.0.
|
59
|
-
marcel (~> 1.0
|
60
|
-
activesupport (6.0.
|
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)
|
59
|
+
marcel (~> 1.0)
|
60
|
+
activesupport (6.0.5)
|
61
61
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
62
62
|
i18n (>= 0.7, < 2)
|
63
63
|
minitest (~> 5.1)
|
@@ -66,7 +66,7 @@ GEM
|
|
66
66
|
builder (3.2.4)
|
67
67
|
byebug (11.1.3)
|
68
68
|
coderay (1.1.3)
|
69
|
-
combustion (1.3.
|
69
|
+
combustion (1.3.7)
|
70
70
|
activesupport (>= 3.0.0)
|
71
71
|
railties (>= 3.0.0)
|
72
72
|
thor (>= 0.14.6)
|
@@ -78,7 +78,7 @@ GEM
|
|
78
78
|
activesupport (>= 5.0)
|
79
79
|
i18n (1.10.0)
|
80
80
|
concurrent-ruby (~> 1.0)
|
81
|
-
loofah (2.
|
81
|
+
loofah (2.18.0)
|
82
82
|
crass (~> 1.0.2)
|
83
83
|
nokogiri (>= 1.5.9)
|
84
84
|
mail (2.7.1)
|
@@ -86,10 +86,14 @@ GEM
|
|
86
86
|
marcel (1.0.2)
|
87
87
|
method_source (1.0.0)
|
88
88
|
mini_mime (1.1.2)
|
89
|
-
|
90
|
-
|
89
|
+
mini_portile2 (2.8.0)
|
90
|
+
minitest (5.16.0)
|
91
|
+
multipart-post (2.2.3)
|
91
92
|
nio4r (2.5.8)
|
92
|
-
nokogiri (1.13.
|
93
|
+
nokogiri (1.13.6)
|
94
|
+
mini_portile2 (~> 2.8.0)
|
95
|
+
racc (~> 1.4)
|
96
|
+
nokogiri (1.13.6-x86_64-linux)
|
93
97
|
racc (~> 1.4)
|
94
98
|
pry (0.13.1)
|
95
99
|
coderay (~> 1.1)
|
@@ -98,32 +102,32 @@ GEM
|
|
98
102
|
byebug (~> 11.0)
|
99
103
|
pry (~> 0.13.0)
|
100
104
|
racc (1.6.0)
|
101
|
-
rack (2.2.3)
|
105
|
+
rack (2.2.3.1)
|
102
106
|
rack-test (1.1.0)
|
103
107
|
rack (>= 1.0, < 3)
|
104
|
-
rails (6.0.
|
105
|
-
actioncable (= 6.0.
|
106
|
-
actionmailbox (= 6.0.
|
107
|
-
actionmailer (= 6.0.
|
108
|
-
actionpack (= 6.0.
|
109
|
-
actiontext (= 6.0.
|
110
|
-
actionview (= 6.0.
|
111
|
-
activejob (= 6.0.
|
112
|
-
activemodel (= 6.0.
|
113
|
-
activerecord (= 6.0.
|
114
|
-
activestorage (= 6.0.
|
115
|
-
activesupport (= 6.0.
|
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)
|
116
120
|
bundler (>= 1.3.0)
|
117
|
-
railties (= 6.0.
|
121
|
+
railties (= 6.0.5)
|
118
122
|
sprockets-rails (>= 2.0.0)
|
119
123
|
rails-dom-testing (2.0.3)
|
120
124
|
activesupport (>= 4.2.0)
|
121
125
|
nokogiri (>= 1.6)
|
122
|
-
rails-html-sanitizer (1.4.
|
126
|
+
rails-html-sanitizer (1.4.3)
|
123
127
|
loofah (~> 2.3)
|
124
|
-
railties (6.0.
|
125
|
-
actionpack (= 6.0.
|
126
|
-
activesupport (= 6.0.
|
128
|
+
railties (6.0.5)
|
129
|
+
actionpack (= 6.0.5)
|
130
|
+
activesupport (= 6.0.5)
|
127
131
|
method_source
|
128
132
|
rake (>= 0.8.7)
|
129
133
|
thor (>= 0.20.3, < 2.0)
|
@@ -137,10 +141,10 @@ GEM
|
|
137
141
|
rspec-expectations (3.11.0)
|
138
142
|
diff-lcs (>= 1.2.0, < 2.0)
|
139
143
|
rspec-support (~> 3.11.0)
|
140
|
-
rspec-mocks (3.11.
|
144
|
+
rspec-mocks (3.11.1)
|
141
145
|
diff-lcs (>= 1.2.0, < 2.0)
|
142
146
|
rspec-support (~> 3.11.0)
|
143
|
-
rspec-rails (5.1.
|
147
|
+
rspec-rails (5.1.2)
|
144
148
|
actionpack (>= 5.2)
|
145
149
|
activesupport (>= 5.2)
|
146
150
|
railties (>= 5.2)
|
@@ -163,9 +167,10 @@ GEM
|
|
163
167
|
websocket-driver (0.7.5)
|
164
168
|
websocket-extensions (>= 0.1.0)
|
165
169
|
websocket-extensions (0.1.5)
|
166
|
-
zeitwerk (2.
|
170
|
+
zeitwerk (2.6.0)
|
167
171
|
|
168
172
|
PLATFORMS
|
173
|
+
ruby
|
169
174
|
x86_64-linux
|
170
175
|
|
171
176
|
DEPENDENCIES
|
data/gemfiles/rails-6.1.lock
CHANGED
@@ -1,67 +1,67 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
texd (0.
|
4
|
+
texd (0.4.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.1.
|
12
|
-
actionpack (= 6.1.
|
13
|
-
activesupport (= 6.1.
|
11
|
+
actioncable (6.1.6)
|
12
|
+
actionpack (= 6.1.6)
|
13
|
+
activesupport (= 6.1.6)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (6.1.
|
17
|
-
actionpack (= 6.1.
|
18
|
-
activejob (= 6.1.
|
19
|
-
activerecord (= 6.1.
|
20
|
-
activestorage (= 6.1.
|
21
|
-
activesupport (= 6.1.
|
16
|
+
actionmailbox (6.1.6)
|
17
|
+
actionpack (= 6.1.6)
|
18
|
+
activejob (= 6.1.6)
|
19
|
+
activerecord (= 6.1.6)
|
20
|
+
activestorage (= 6.1.6)
|
21
|
+
activesupport (= 6.1.6)
|
22
22
|
mail (>= 2.7.1)
|
23
|
-
actionmailer (6.1.
|
24
|
-
actionpack (= 6.1.
|
25
|
-
actionview (= 6.1.
|
26
|
-
activejob (= 6.1.
|
27
|
-
activesupport (= 6.1.
|
23
|
+
actionmailer (6.1.6)
|
24
|
+
actionpack (= 6.1.6)
|
25
|
+
actionview (= 6.1.6)
|
26
|
+
activejob (= 6.1.6)
|
27
|
+
activesupport (= 6.1.6)
|
28
28
|
mail (~> 2.5, >= 2.5.4)
|
29
29
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.1.
|
31
|
-
actionview (= 6.1.
|
32
|
-
activesupport (= 6.1.
|
30
|
+
actionpack (6.1.6)
|
31
|
+
actionview (= 6.1.6)
|
32
|
+
activesupport (= 6.1.6)
|
33
33
|
rack (~> 2.0, >= 2.0.9)
|
34
34
|
rack-test (>= 0.6.3)
|
35
35
|
rails-dom-testing (~> 2.0)
|
36
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.1.
|
38
|
-
actionpack (= 6.1.
|
39
|
-
activerecord (= 6.1.
|
40
|
-
activestorage (= 6.1.
|
41
|
-
activesupport (= 6.1.
|
37
|
+
actiontext (6.1.6)
|
38
|
+
actionpack (= 6.1.6)
|
39
|
+
activerecord (= 6.1.6)
|
40
|
+
activestorage (= 6.1.6)
|
41
|
+
activesupport (= 6.1.6)
|
42
42
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.1.
|
44
|
-
activesupport (= 6.1.
|
43
|
+
actionview (6.1.6)
|
44
|
+
activesupport (= 6.1.6)
|
45
45
|
builder (~> 3.1)
|
46
46
|
erubi (~> 1.4)
|
47
47
|
rails-dom-testing (~> 2.0)
|
48
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.1.
|
50
|
-
activesupport (= 6.1.
|
49
|
+
activejob (6.1.6)
|
50
|
+
activesupport (= 6.1.6)
|
51
51
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.1.
|
53
|
-
activesupport (= 6.1.
|
54
|
-
activerecord (6.1.
|
55
|
-
activemodel (= 6.1.
|
56
|
-
activesupport (= 6.1.
|
57
|
-
activestorage (6.1.
|
58
|
-
actionpack (= 6.1.
|
59
|
-
activejob (= 6.1.
|
60
|
-
activerecord (= 6.1.
|
61
|
-
activesupport (= 6.1.
|
52
|
+
activemodel (6.1.6)
|
53
|
+
activesupport (= 6.1.6)
|
54
|
+
activerecord (6.1.6)
|
55
|
+
activemodel (= 6.1.6)
|
56
|
+
activesupport (= 6.1.6)
|
57
|
+
activestorage (6.1.6)
|
58
|
+
actionpack (= 6.1.6)
|
59
|
+
activejob (= 6.1.6)
|
60
|
+
activerecord (= 6.1.6)
|
61
|
+
activesupport (= 6.1.6)
|
62
62
|
marcel (~> 1.0)
|
63
63
|
mini_mime (>= 1.1.0)
|
64
|
-
activesupport (6.1.
|
64
|
+
activesupport (6.1.6)
|
65
65
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
66
|
i18n (>= 1.6, < 2)
|
67
67
|
minitest (>= 5.1)
|
@@ -70,7 +70,7 @@ GEM
|
|
70
70
|
builder (3.2.4)
|
71
71
|
byebug (11.1.3)
|
72
72
|
coderay (1.1.3)
|
73
|
-
combustion (1.3.
|
73
|
+
combustion (1.3.7)
|
74
74
|
activesupport (>= 3.0.0)
|
75
75
|
railties (>= 3.0.0)
|
76
76
|
thor (>= 0.14.6)
|
@@ -82,7 +82,7 @@ GEM
|
|
82
82
|
activesupport (>= 5.0)
|
83
83
|
i18n (1.10.0)
|
84
84
|
concurrent-ruby (~> 1.0)
|
85
|
-
loofah (2.
|
85
|
+
loofah (2.18.0)
|
86
86
|
crass (~> 1.0.2)
|
87
87
|
nokogiri (>= 1.5.9)
|
88
88
|
mail (2.7.1)
|
@@ -90,10 +90,14 @@ GEM
|
|
90
90
|
marcel (1.0.2)
|
91
91
|
method_source (1.0.0)
|
92
92
|
mini_mime (1.1.2)
|
93
|
-
|
94
|
-
|
93
|
+
mini_portile2 (2.8.0)
|
94
|
+
minitest (5.16.0)
|
95
|
+
multipart-post (2.2.3)
|
95
96
|
nio4r (2.5.8)
|
96
|
-
nokogiri (1.13.
|
97
|
+
nokogiri (1.13.6)
|
98
|
+
mini_portile2 (~> 2.8.0)
|
99
|
+
racc (~> 1.4)
|
100
|
+
nokogiri (1.13.6-x86_64-linux)
|
97
101
|
racc (~> 1.4)
|
98
102
|
pry (0.13.1)
|
99
103
|
coderay (~> 1.1)
|
@@ -102,32 +106,32 @@ GEM
|
|
102
106
|
byebug (~> 11.0)
|
103
107
|
pry (~> 0.13.0)
|
104
108
|
racc (1.6.0)
|
105
|
-
rack (2.2.3)
|
109
|
+
rack (2.2.3.1)
|
106
110
|
rack-test (1.1.0)
|
107
111
|
rack (>= 1.0, < 3)
|
108
|
-
rails (6.1.
|
109
|
-
actioncable (= 6.1.
|
110
|
-
actionmailbox (= 6.1.
|
111
|
-
actionmailer (= 6.1.
|
112
|
-
actionpack (= 6.1.
|
113
|
-
actiontext (= 6.1.
|
114
|
-
actionview (= 6.1.
|
115
|
-
activejob (= 6.1.
|
116
|
-
activemodel (= 6.1.
|
117
|
-
activerecord (= 6.1.
|
118
|
-
activestorage (= 6.1.
|
119
|
-
activesupport (= 6.1.
|
112
|
+
rails (6.1.6)
|
113
|
+
actioncable (= 6.1.6)
|
114
|
+
actionmailbox (= 6.1.6)
|
115
|
+
actionmailer (= 6.1.6)
|
116
|
+
actionpack (= 6.1.6)
|
117
|
+
actiontext (= 6.1.6)
|
118
|
+
actionview (= 6.1.6)
|
119
|
+
activejob (= 6.1.6)
|
120
|
+
activemodel (= 6.1.6)
|
121
|
+
activerecord (= 6.1.6)
|
122
|
+
activestorage (= 6.1.6)
|
123
|
+
activesupport (= 6.1.6)
|
120
124
|
bundler (>= 1.15.0)
|
121
|
-
railties (= 6.1.
|
125
|
+
railties (= 6.1.6)
|
122
126
|
sprockets-rails (>= 2.0.0)
|
123
127
|
rails-dom-testing (2.0.3)
|
124
128
|
activesupport (>= 4.2.0)
|
125
129
|
nokogiri (>= 1.6)
|
126
|
-
rails-html-sanitizer (1.4.
|
130
|
+
rails-html-sanitizer (1.4.3)
|
127
131
|
loofah (~> 2.3)
|
128
|
-
railties (6.1.
|
129
|
-
actionpack (= 6.1.
|
130
|
-
activesupport (= 6.1.
|
132
|
+
railties (6.1.6)
|
133
|
+
actionpack (= 6.1.6)
|
134
|
+
activesupport (= 6.1.6)
|
131
135
|
method_source
|
132
136
|
rake (>= 12.2)
|
133
137
|
thor (~> 1.0)
|
@@ -141,10 +145,10 @@ GEM
|
|
141
145
|
rspec-expectations (3.11.0)
|
142
146
|
diff-lcs (>= 1.2.0, < 2.0)
|
143
147
|
rspec-support (~> 3.11.0)
|
144
|
-
rspec-mocks (3.11.
|
148
|
+
rspec-mocks (3.11.1)
|
145
149
|
diff-lcs (>= 1.2.0, < 2.0)
|
146
150
|
rspec-support (~> 3.11.0)
|
147
|
-
rspec-rails (5.1.
|
151
|
+
rspec-rails (5.1.2)
|
148
152
|
actionpack (>= 5.2)
|
149
153
|
activesupport (>= 5.2)
|
150
154
|
railties (>= 5.2)
|
@@ -166,9 +170,10 @@ GEM
|
|
166
170
|
websocket-driver (0.7.5)
|
167
171
|
websocket-extensions (>= 0.1.0)
|
168
172
|
websocket-extensions (0.1.5)
|
169
|
-
zeitwerk (2.
|
173
|
+
zeitwerk (2.6.0)
|
170
174
|
|
171
175
|
PLATFORMS
|
176
|
+
ruby
|
172
177
|
x86_64-linux
|
173
178
|
|
174
179
|
DEPENDENCIES
|
data/gemfiles/rails-7.0.lock
CHANGED
@@ -1,74 +1,74 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
texd (0.
|
4
|
+
texd (0.4.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.
|
12
|
-
actionpack (= 7.0.
|
13
|
-
activesupport (= 7.0.
|
11
|
+
actioncable (7.0.3)
|
12
|
+
actionpack (= 7.0.3)
|
13
|
+
activesupport (= 7.0.3)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (7.0.
|
17
|
-
actionpack (= 7.0.
|
18
|
-
activejob (= 7.0.
|
19
|
-
activerecord (= 7.0.
|
20
|
-
activestorage (= 7.0.
|
21
|
-
activesupport (= 7.0.
|
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)
|
22
22
|
mail (>= 2.7.1)
|
23
23
|
net-imap
|
24
24
|
net-pop
|
25
25
|
net-smtp
|
26
|
-
actionmailer (7.0.
|
27
|
-
actionpack (= 7.0.
|
28
|
-
actionview (= 7.0.
|
29
|
-
activejob (= 7.0.
|
30
|
-
activesupport (= 7.0.
|
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)
|
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.
|
37
|
-
actionview (= 7.0.
|
38
|
-
activesupport (= 7.0.
|
36
|
+
actionpack (7.0.3)
|
37
|
+
actionview (= 7.0.3)
|
38
|
+
activesupport (= 7.0.3)
|
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.
|
44
|
-
actionpack (= 7.0.
|
45
|
-
activerecord (= 7.0.
|
46
|
-
activestorage (= 7.0.
|
47
|
-
activesupport (= 7.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)
|
48
48
|
globalid (>= 0.6.0)
|
49
49
|
nokogiri (>= 1.8.5)
|
50
|
-
actionview (7.0.
|
51
|
-
activesupport (= 7.0.
|
50
|
+
actionview (7.0.3)
|
51
|
+
activesupport (= 7.0.3)
|
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.
|
57
|
-
activesupport (= 7.0.
|
56
|
+
activejob (7.0.3)
|
57
|
+
activesupport (= 7.0.3)
|
58
58
|
globalid (>= 0.3.6)
|
59
|
-
activemodel (7.0.
|
60
|
-
activesupport (= 7.0.
|
61
|
-
activerecord (7.0.
|
62
|
-
activemodel (= 7.0.
|
63
|
-
activesupport (= 7.0.
|
64
|
-
activestorage (7.0.
|
65
|
-
actionpack (= 7.0.
|
66
|
-
activejob (= 7.0.
|
67
|
-
activerecord (= 7.0.
|
68
|
-
activesupport (= 7.0.
|
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)
|
69
69
|
marcel (~> 1.0)
|
70
70
|
mini_mime (>= 1.1.0)
|
71
|
-
activesupport (7.0.
|
71
|
+
activesupport (7.0.3)
|
72
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
73
|
i18n (>= 1.6, < 2)
|
74
74
|
minitest (>= 5.1)
|
@@ -76,7 +76,7 @@ GEM
|
|
76
76
|
builder (3.2.4)
|
77
77
|
byebug (11.1.3)
|
78
78
|
coderay (1.1.3)
|
79
|
-
combustion (1.3.
|
79
|
+
combustion (1.3.7)
|
80
80
|
activesupport (>= 3.0.0)
|
81
81
|
railties (>= 3.0.0)
|
82
82
|
thor (>= 0.14.6)
|
@@ -89,8 +89,7 @@ GEM
|
|
89
89
|
activesupport (>= 5.0)
|
90
90
|
i18n (1.10.0)
|
91
91
|
concurrent-ruby (~> 1.0)
|
92
|
-
|
93
|
-
loofah (2.15.0)
|
92
|
+
loofah (2.18.0)
|
94
93
|
crass (~> 1.0.2)
|
95
94
|
nokogiri (>= 1.5.9)
|
96
95
|
mail (2.7.1)
|
@@ -98,8 +97,9 @@ GEM
|
|
98
97
|
marcel (1.0.2)
|
99
98
|
method_source (1.0.0)
|
100
99
|
mini_mime (1.1.2)
|
101
|
-
|
102
|
-
|
100
|
+
mini_portile2 (2.8.0)
|
101
|
+
minitest (5.16.0)
|
102
|
+
multipart-post (2.2.3)
|
103
103
|
net-imap (0.2.3)
|
104
104
|
digest
|
105
105
|
net-protocol
|
@@ -108,15 +108,17 @@ GEM
|
|
108
108
|
digest
|
109
109
|
net-protocol
|
110
110
|
timeout
|
111
|
-
net-protocol (0.1.
|
112
|
-
io-wait
|
111
|
+
net-protocol (0.1.3)
|
113
112
|
timeout
|
114
113
|
net-smtp (0.3.1)
|
115
114
|
digest
|
116
115
|
net-protocol
|
117
116
|
timeout
|
118
117
|
nio4r (2.5.8)
|
119
|
-
nokogiri (1.13.
|
118
|
+
nokogiri (1.13.6)
|
119
|
+
mini_portile2 (~> 2.8.0)
|
120
|
+
racc (~> 1.4)
|
121
|
+
nokogiri (1.13.6-x86_64-linux)
|
120
122
|
racc (~> 1.4)
|
121
123
|
pry (0.13.1)
|
122
124
|
coderay (~> 1.1)
|
@@ -125,31 +127,31 @@ GEM
|
|
125
127
|
byebug (~> 11.0)
|
126
128
|
pry (~> 0.13.0)
|
127
129
|
racc (1.6.0)
|
128
|
-
rack (2.2.3)
|
130
|
+
rack (2.2.3.1)
|
129
131
|
rack-test (1.1.0)
|
130
132
|
rack (>= 1.0, < 3)
|
131
|
-
rails (7.0.
|
132
|
-
actioncable (= 7.0.
|
133
|
-
actionmailbox (= 7.0.
|
134
|
-
actionmailer (= 7.0.
|
135
|
-
actionpack (= 7.0.
|
136
|
-
actiontext (= 7.0.
|
137
|
-
actionview (= 7.0.
|
138
|
-
activejob (= 7.0.
|
139
|
-
activemodel (= 7.0.
|
140
|
-
activerecord (= 7.0.
|
141
|
-
activestorage (= 7.0.
|
142
|
-
activesupport (= 7.0.
|
133
|
+
rails (7.0.3)
|
134
|
+
actioncable (= 7.0.3)
|
135
|
+
actionmailbox (= 7.0.3)
|
136
|
+
actionmailer (= 7.0.3)
|
137
|
+
actionpack (= 7.0.3)
|
138
|
+
actiontext (= 7.0.3)
|
139
|
+
actionview (= 7.0.3)
|
140
|
+
activejob (= 7.0.3)
|
141
|
+
activemodel (= 7.0.3)
|
142
|
+
activerecord (= 7.0.3)
|
143
|
+
activestorage (= 7.0.3)
|
144
|
+
activesupport (= 7.0.3)
|
143
145
|
bundler (>= 1.15.0)
|
144
|
-
railties (= 7.0.
|
146
|
+
railties (= 7.0.3)
|
145
147
|
rails-dom-testing (2.0.3)
|
146
148
|
activesupport (>= 4.2.0)
|
147
149
|
nokogiri (>= 1.6)
|
148
|
-
rails-html-sanitizer (1.4.
|
150
|
+
rails-html-sanitizer (1.4.3)
|
149
151
|
loofah (~> 2.3)
|
150
|
-
railties (7.0.
|
151
|
-
actionpack (= 7.0.
|
152
|
-
activesupport (= 7.0.
|
152
|
+
railties (7.0.3)
|
153
|
+
actionpack (= 7.0.3)
|
154
|
+
activesupport (= 7.0.3)
|
153
155
|
method_source
|
154
156
|
rake (>= 12.2)
|
155
157
|
thor (~> 1.0)
|
@@ -164,10 +166,10 @@ GEM
|
|
164
166
|
rspec-expectations (3.11.0)
|
165
167
|
diff-lcs (>= 1.2.0, < 2.0)
|
166
168
|
rspec-support (~> 3.11.0)
|
167
|
-
rspec-mocks (3.11.
|
169
|
+
rspec-mocks (3.11.1)
|
168
170
|
diff-lcs (>= 1.2.0, < 2.0)
|
169
171
|
rspec-support (~> 3.11.0)
|
170
|
-
rspec-rails (5.1.
|
172
|
+
rspec-rails (5.1.2)
|
171
173
|
actionpack (>= 5.2)
|
172
174
|
activesupport (>= 5.2)
|
173
175
|
railties (>= 5.2)
|
@@ -176,17 +178,18 @@ GEM
|
|
176
178
|
rspec-mocks (~> 3.10)
|
177
179
|
rspec-support (~> 3.10)
|
178
180
|
rspec-support (3.11.0)
|
179
|
-
strscan (3.0.
|
181
|
+
strscan (3.0.3)
|
180
182
|
thor (1.2.1)
|
181
|
-
timeout (0.
|
183
|
+
timeout (0.3.0)
|
182
184
|
tzinfo (2.0.4)
|
183
185
|
concurrent-ruby (~> 1.0)
|
184
186
|
websocket-driver (0.7.5)
|
185
187
|
websocket-extensions (>= 0.1.0)
|
186
188
|
websocket-extensions (0.1.5)
|
187
|
-
zeitwerk (2.
|
189
|
+
zeitwerk (2.6.0)
|
188
190
|
|
189
191
|
PLATFORMS
|
192
|
+
ruby
|
190
193
|
x86_64-linux
|
191
194
|
|
192
195
|
DEPENDENCIES
|
data/lib/texd/client.rb
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
require "net/http"
|
4
4
|
require "net/http/post/multipart"
|
5
5
|
require "json"
|
6
|
+
require "pp"
|
6
7
|
|
7
8
|
module Texd
|
8
9
|
class Client
|
@@ -39,6 +40,20 @@ module Texd
|
|
39
40
|
@logs = logs
|
40
41
|
super(message, details: details)
|
41
42
|
end
|
43
|
+
|
44
|
+
def write_to(io)
|
45
|
+
io << "Compilation failed: #{message}\n"
|
46
|
+
if details
|
47
|
+
io.print "Details: "
|
48
|
+
PP.pp(details, io)
|
49
|
+
end
|
50
|
+
|
51
|
+
if logs
|
52
|
+
io << "Logs:\n" << logs
|
53
|
+
else
|
54
|
+
io << "Logs: not available"
|
55
|
+
end
|
56
|
+
end
|
42
57
|
end
|
43
58
|
|
44
59
|
# Raised when the texd server encountered one or more unknown file
|
@@ -87,6 +102,7 @@ module Texd
|
|
87
102
|
|
88
103
|
Net::HTTP.start uri.host, uri.port, **request_options(uri) do |http|
|
89
104
|
req = yield(uri)
|
105
|
+
req.basic_auth(uri.user, uri.password) if uri.user || uri.password
|
90
106
|
decode_response http.request(req)
|
91
107
|
end
|
92
108
|
end
|
@@ -108,7 +124,7 @@ module Texd
|
|
108
124
|
end
|
109
125
|
|
110
126
|
def decode_response(res)
|
111
|
-
ct = res["Content-Type"]
|
127
|
+
ct = res["Content-Type"].to_s
|
112
128
|
body = case ct.split(";").first
|
113
129
|
when "application/json"
|
114
130
|
JSON.parse(res.body)
|
data/lib/texd/config.rb
CHANGED
@@ -27,8 +27,9 @@ module Texd
|
|
27
27
|
read_timeout: ENV.fetch("TEXD_READ_TIMEOUT", 180),
|
28
28
|
write_timeout: ENV.fetch("TEXD_WRITE_TIMEOUT", 60),
|
29
29
|
error_format: ENV.fetch("TEXD_ERRORS", "full"),
|
30
|
-
|
31
|
-
|
30
|
+
error_handler: ENV.fetch("TEXD_ERROR_HANDLER", "raise"),
|
31
|
+
tex_engine: ENV.fetch("TEXD_ENGINE", nil),
|
32
|
+
tex_image: ENV.fetch("TEXD_IMAGE", nil),
|
32
33
|
helpers: Set.new,
|
33
34
|
lookup_paths: [], # Rails.root.join("app/tex") is inserted in railtie.rb
|
34
35
|
ref_cache_size: 128,
|
@@ -40,6 +41,13 @@ module Texd
|
|
40
41
|
# Supported error formats.
|
41
42
|
ERROR_FORMATS = %w[json full condensed].freeze
|
42
43
|
|
44
|
+
# Default error handlers. One might provide a custom proc, if desired.
|
45
|
+
ERROR_HANDLERS = {
|
46
|
+
"raise" => proc { |err, _doc| raise err },
|
47
|
+
"stderr" => proc { |err, _doc| err.write_to($stderr) },
|
48
|
+
"ignore" => proc { |_err, _doc| },
|
49
|
+
}.freeze
|
50
|
+
|
43
51
|
# Supported TeX engines.
|
44
52
|
TEX_ENGINES = %w[xelatex lualatex pdflatex].freeze
|
45
53
|
|
@@ -74,10 +82,26 @@ module Texd
|
|
74
82
|
#
|
75
83
|
# Supported values are described in ERROR_FORMATS.
|
76
84
|
#
|
77
|
-
# The default is "full" and can be overriden by the `
|
85
|
+
# The default is "full" and can be overriden by the `TEXD_ERRORS`
|
78
86
|
# environment variable.
|
79
87
|
attr_reader :error_format
|
80
88
|
|
89
|
+
# This setting defines how to handle Texd::Client::CompilationError errors.
|
90
|
+
#
|
91
|
+
# Supported values are:
|
92
|
+
#
|
93
|
+
# - "raise", which will not process the error,
|
94
|
+
# - "stderr", which will print the error to stderr,
|
95
|
+
# - "ignore", which will silently discard,
|
96
|
+
# - a Proc instance, which will delegate the error handling to it.
|
97
|
+
#
|
98
|
+
# The setter will lookup "raise", "stderr", and "ignore" from ERROR_HANDLERS,
|
99
|
+
# so this attribute will always be of kind Proc.
|
100
|
+
#
|
101
|
+
# The default value is "raise" and can be overridden by the `TEXD_ERROR_HANDLER`
|
102
|
+
# environment variable.
|
103
|
+
attr_reader :error_handler
|
104
|
+
|
81
105
|
# This is the selected TeX engine. Supported values are described in
|
82
106
|
# TEX_ENGINES.
|
83
107
|
#
|
@@ -163,12 +187,30 @@ module Texd
|
|
163
187
|
val = val.to_s
|
164
188
|
|
165
189
|
unless ERROR_FORMATS.include?(val)
|
166
|
-
raise InvalidConfig.new(nil,
|
190
|
+
raise InvalidConfig.new(nil,
|
191
|
+
option: :error_format,
|
192
|
+
got: val,
|
193
|
+
expected: ERROR_FORMATS)
|
167
194
|
end
|
168
195
|
|
169
196
|
@error_format = val
|
170
197
|
end
|
171
198
|
|
199
|
+
def error_handler=(val)
|
200
|
+
val ||= "raise"
|
201
|
+
val = ERROR_HANDLERS.fetch(val.to_s, nil) unless val.respond_to?(:call)
|
202
|
+
|
203
|
+
if val
|
204
|
+
@error_handler = val
|
205
|
+
return
|
206
|
+
end
|
207
|
+
|
208
|
+
raise InvalidConfig.new(nil,
|
209
|
+
option: :error_handler,
|
210
|
+
got: val,
|
211
|
+
expected: ERROR_HANDLERS.keys + ["a Proc instance"])
|
212
|
+
end
|
213
|
+
|
172
214
|
def tex_engine=(val)
|
173
215
|
unless val.nil?
|
174
216
|
val = val.to_s
|
data/lib/texd/document.rb
CHANGED
@@ -40,6 +40,12 @@ module Texd
|
|
40
40
|
def to_upload_ios(missing_refs: Set.new)
|
41
41
|
attachments.to_upload_ios(missing_refs)
|
42
42
|
end
|
43
|
+
|
44
|
+
# Convenience accessor for the main input file.
|
45
|
+
# @returns [String] main input file contents
|
46
|
+
def main_input_contents
|
47
|
+
attachments.items.fetch(main_input_name).contents
|
48
|
+
end
|
43
49
|
end
|
44
50
|
end
|
45
51
|
end
|
data/lib/texd/version.rb
CHANGED
data/lib/texd.rb
CHANGED
@@ -105,7 +105,6 @@ module Texd
|
|
105
105
|
# # Compilation failed and we might have a log in err.logs (only
|
106
106
|
# # Texd.config.error_format is "full" or "condensed").
|
107
107
|
# # Otherwise some details might be available in err.details.
|
108
|
-
# # have a log in err.details
|
109
108
|
# rescue Texd::Client::InputError => err
|
110
109
|
# # something failed during input file processing. For details see
|
111
110
|
# # err.details
|
@@ -135,5 +134,8 @@ module Texd
|
|
135
134
|
# retry once with resolved references
|
136
135
|
client.render doc.to_upload_ios(missing_refs: err.references),
|
137
136
|
input: doc.main_input_name
|
137
|
+
rescue Client::CompilationError => err
|
138
|
+
config.error_handler.call(err, doc)
|
139
|
+
nil
|
138
140
|
end
|
139
141
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: texd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Menke
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multipart-post
|
@@ -141,7 +141,7 @@ metadata:
|
|
141
141
|
rubygems_mfa_required: 'true'
|
142
142
|
homepage_uri: https://github.com/digineo/texd-ruby
|
143
143
|
source_code_uri: https://github.com/digineo/texd-ruby
|
144
|
-
changelog_uri: https://github.com/digineo/texd-ruby/blob/v0.
|
144
|
+
changelog_uri: https://github.com/digineo/texd-ruby/blob/v0.4.1/CHANGELOG.md
|
145
145
|
post_install_message:
|
146
146
|
rdoc_options: []
|
147
147
|
require_paths:
|