texd 0.5.1 → 0.7.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 +4 -4
- data/.rubocop.yml +6 -3
- data/CHANGELOG.md +32 -1
- data/Gemfile +10 -0
- data/Gemfile.lock +226 -163
- data/Makefile +63 -39
- data/README.md +41 -6
- data/gemfiles/rails-7.0/Gemfile +12 -1
- data/gemfiles/rails-7.0/Gemfile.lock +130 -119
- data/gemfiles/rails-7.1/Gemfile +18 -0
- data/gemfiles/rails-7.1/Gemfile.lock +253 -0
- data/gemfiles/rails-7.2/Gemfile +17 -0
- data/gemfiles/rails-7.2/Gemfile.lock +258 -0
- data/gemfiles/rails-8.0/Gemfile +15 -0
- data/gemfiles/rails-8.0/Gemfile.lock +259 -0
- data/gemfiles/rails-8.1/Gemfile +15 -0
- data/gemfiles/rails-8.1/Gemfile.lock +262 -0
- data/gemfiles/rails-main/Gemfile +8 -0
- data/gemfiles/rails-main/Gemfile.lock +185 -135
- data/lib/texd/client.rb +1 -2
- data/lib/texd/config.rb +0 -1
- data/lib/texd/document.rb +2 -2
- data/lib/texd/helpers.rb +12 -4
- data/lib/texd/version.rb +1 -1
- data/texd.gemspec +2 -7
- metadata +18 -70
- data/gemfiles/rails-6.0/Gemfile +0 -7
- data/gemfiles/rails-6.0/Gemfile.lock +0 -186
- data/gemfiles/rails-6.1/Gemfile +0 -7
- data/gemfiles/rails-6.1/Gemfile.lock +0 -189
data/Makefile
CHANGED
|
@@ -1,69 +1,93 @@
|
|
|
1
1
|
SPEC =
|
|
2
2
|
|
|
3
3
|
.PHONY: test
|
|
4
|
-
test:
|
|
4
|
+
test: test-stable rubocop
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
.PHONY: test-stable
|
|
7
|
+
test-stable: rails-7.0 rails-7.1 rails-7.2 rails-8.0
|
|
7
8
|
|
|
8
|
-
.PHONY:
|
|
9
|
-
rails-
|
|
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
|
|
9
|
+
.PHONY: test-all
|
|
10
|
+
test-all: test rails-main rails-8.1
|
|
15
11
|
|
|
16
|
-
.PHONY:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
else
|
|
21
|
-
export BUNDLE_GEMFILE=gemfiles/rails-6.1/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
|
|
22
|
-
endif
|
|
12
|
+
.PHONY: update-all-dependencies
|
|
13
|
+
update-all-dependencies: update test-all
|
|
14
|
+
git add Gemfile.lock gemfiles/*/Gemfile.lock
|
|
15
|
+
git commit -m "update dependencies"
|
|
23
16
|
|
|
24
17
|
.PHONY: rails-7.0
|
|
25
18
|
rails-7.0:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
bin/make-helper.sh 7.0 bundle --quiet
|
|
20
|
+
bin/make-helper.sh 7.0 rspec $(SPEC)
|
|
21
|
+
|
|
22
|
+
.PHONY: rails-7.1
|
|
23
|
+
rails-7.1:
|
|
24
|
+
bin/make-helper.sh 7.1 bundle --quiet
|
|
25
|
+
bin/make-helper.sh 7.1 rspec $(SPEC)
|
|
26
|
+
|
|
27
|
+
.PHONY: rails-7.2
|
|
28
|
+
rails-7.2:
|
|
29
|
+
bin/make-helper.sh 7.2 bundle --quiet
|
|
30
|
+
bin/make-helper.sh 7.2 rspec $(SPEC)
|
|
31
|
+
|
|
32
|
+
.PHONY: rails-8.0
|
|
33
|
+
rails-8.0:
|
|
34
|
+
bin/make-helper.sh 8.0 bundle --quiet
|
|
35
|
+
bin/make-helper.sh 8.0 rspec $(SPEC)
|
|
36
|
+
|
|
37
|
+
.PHONY: rails-8.1
|
|
38
|
+
rails-8.1:
|
|
39
|
+
bin/make-helper.sh 8.1 bundle --quiet
|
|
40
|
+
bin/make-helper.sh 8.1 rspec $(SPEC)
|
|
31
41
|
|
|
32
42
|
.PHONY: rails-main
|
|
33
43
|
rails-main:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
44
|
+
bin/make-helper.sh main bundle --quiet
|
|
45
|
+
bin/make-helper.sh main rspec $(SPEC)
|
|
46
|
+
|
|
47
|
+
.PHONY: setup
|
|
48
|
+
setup:
|
|
49
|
+
bin/make-helper.sh 7.0 gem install bundler:2.7.2
|
|
50
|
+
bin/make-helper.sh 7.1 gem install bundler:2.7.2
|
|
51
|
+
bin/make-helper.sh 7.2 gem install bundler:2.7.2
|
|
52
|
+
bin/make-helper.sh 8.0 gem install bundler:2.7.2
|
|
53
|
+
bin/make-helper.sh 8.1 gem install bundler:2.7.2
|
|
54
|
+
bin/make-helper.sh main gem install bundler:2.7.2
|
|
55
|
+
bin/make-helper.sh . gem install bundler:2.7.2
|
|
39
56
|
|
|
40
57
|
.PHONY: update
|
|
41
58
|
update:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
59
|
+
bin/make-helper.sh 7.0 bundle update && bin/make-helper.sh 7.0 bundle clean --force
|
|
60
|
+
bin/make-helper.sh 7.1 bundle update && bin/make-helper.sh 7.1 bundle clean --force
|
|
61
|
+
bin/make-helper.sh 7.2 bundle update && bin/make-helper.sh 7.2 bundle clean --force
|
|
62
|
+
bin/make-helper.sh 8.0 bundle update && bin/make-helper.sh 8.0 bundle clean --force
|
|
63
|
+
bin/make-helper.sh 8.1 bundle update && bin/make-helper.sh 8.1 bundle clean --force
|
|
64
|
+
bin/make-helper.sh main bundle update && bin/make-helper.sh main bundle clean --force
|
|
65
|
+
bin/make-helper.sh . bundle update && bin/make-helper.sh . bundle clean --force
|
|
47
66
|
|
|
48
67
|
.PHONY: rubocop
|
|
49
68
|
rubocop:
|
|
50
|
-
|
|
69
|
+
bin/make-helper.sh . bundle --quiet
|
|
70
|
+
bin/make-helper.sh . rake rubocop:autocorrect
|
|
51
71
|
|
|
52
72
|
.PHONY: docs
|
|
53
73
|
docs:
|
|
54
|
-
|
|
74
|
+
bin/make-helper.sh . bundle --quiet
|
|
75
|
+
bin/make-helper.sh . yard doc --markup markdown 'lib/**/*.rb' - README.md CHANGELOG.md LICENSE
|
|
55
76
|
|
|
56
77
|
.PHONY: texd-docker
|
|
57
78
|
texd-docker:
|
|
58
|
-
rm -rvf tmp/jobs tmp/refs
|
|
59
|
-
mkdir -p tmp/jobs tmp/refs
|
|
79
|
+
rm -rvf tmp/jobs tmp/refs tmp/home
|
|
80
|
+
mkdir -p tmp/jobs tmp/refs tmp/home
|
|
60
81
|
docker run --rm \
|
|
61
82
|
--name texd-dev \
|
|
62
83
|
-p 127.0.0.1:2201:2201 \
|
|
63
|
-
-
|
|
64
|
-
-v $$(pwd)/tmp/
|
|
84
|
+
-e HOME=/texd/home \
|
|
85
|
+
-v $$(pwd)/tmp/jobs:/texd/jobs \
|
|
86
|
+
-v $$(pwd)/tmp/refs:/texd/refs \
|
|
87
|
+
-v $$(pwd)/tmp/home:/texd/home \
|
|
65
88
|
-u $$(id -u):$$(id -g) \
|
|
66
|
-
|
|
67
|
-
--
|
|
89
|
+
ghcr.io/digineo/texd \
|
|
90
|
+
--job-directory /texd/jobs \
|
|
91
|
+
--reference-store dir:///texd/refs \
|
|
68
92
|
--retention-policy=purge-on-start \
|
|
69
93
|
--keep-jobs always
|
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# texd
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/texd)
|
|
4
|
+
[](https://github.com/digineo/texd-ruby/actions)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
texd is a Ruby client for the [texd web service](https://github.com/digineo/texd).
|
|
4
8
|
|
|
5
9
|
It leverages ActionView's template rendering mechanism to compile `.tex`
|
|
@@ -8,17 +12,34 @@ in background jobs.
|
|
|
8
12
|
|
|
9
13
|
## Installation
|
|
10
14
|
|
|
11
|
-
|
|
15
|
+
The following Rails and Ruby versions[^1] are supported
|
|
16
|
+
[and tested](https://github.com/digineo/texd-ruby/actions/workflows/main.yml?query=branch%3Amaster);
|
|
17
|
+
older versions of Ruby and Rails *may* work, but this is not guaranteed.
|
|
18
|
+
|
|
19
|
+
| ↓ Rails / Ruby → | 3.2 | 3.3 | 3.4 | Notes |
|
|
20
|
+
|-----------------:|:----|:----|:----|:--------|
|
|
21
|
+
| 7.0 | ✅ | ❌ | ❌ | (1) |
|
|
22
|
+
| 7.1 | ✅ | ❌ | ❌ | (1) |
|
|
23
|
+
| 7.2 | ✅ | ✅ | ✅ | |
|
|
24
|
+
| 8.0 | ✅ | ✅ | ✅ | (2) |
|
|
25
|
+
| 8.1 | ✅ | ✅ | ✅ | (2) |
|
|
26
|
+
| main branch | ✅ | ✅ | ✅ | (2) |
|
|
12
27
|
|
|
13
|
-
|
|
14
|
-
- Rails 6.0 or later
|
|
28
|
+
<details open><summary>Notes</summary>
|
|
15
29
|
|
|
16
|
-
|
|
30
|
+
1. Rails upto 7.2 depends on a version of Nokogiri which isn't available for Ruby 3.2+
|
|
31
|
+
2. Rails 8.0+ requires Ruby 3.2+[^2]
|
|
32
|
+
|
|
33
|
+
</details>
|
|
17
34
|
|
|
18
35
|
Install the gem and add to the application's Gemfile by executing:
|
|
19
36
|
|
|
20
37
|
$ bundle add texd
|
|
21
38
|
|
|
39
|
+
[^1]: We're focussing on the minimal Ruby version available in [Debian Stable](https://packages.debian.org/trixie/ruby) and [Ubuntu LTS](https://packages.ubuntu.com/noble/ruby), i.e. 3.3 and 3.2 respectively. Regarding Rails, we'll cover a wider range.
|
|
40
|
+
|
|
41
|
+
[^2]: See [commit `c7b9bb1`][https://github.com/rails/rails/commit/c7b9bb1b73628daf9c9ebd56c63ce3008b31ac6f] in the Rails repository
|
|
42
|
+
|
|
22
43
|
## Configuration
|
|
23
44
|
|
|
24
45
|
Before you can use texd, you need to tell it where your instance is located.
|
|
@@ -215,8 +236,9 @@ push git commits and the created tag, and push the `.gem` file to
|
|
|
215
236
|
[rubygems.org](https://rubygems.org).
|
|
216
237
|
|
|
217
238
|
You may want to run a texd server instance locally. This is easiest done by
|
|
218
|
-
calling
|
|
219
|
-
develop/test against the bleeding edge, you can clone and
|
|
239
|
+
calling `make texd-docker` (which pulls and runs the `ghcr.io/digineo/texd` Docker
|
|
240
|
+
image). If you need to develop/test against the bleeding edge, you can clone and
|
|
241
|
+
run texd from source:
|
|
220
242
|
|
|
221
243
|
```console
|
|
222
244
|
$ cd ~/code/github.com/digineo
|
|
@@ -226,6 +248,19 @@ $ mkdir -p tmp/refs
|
|
|
226
248
|
$ make run-container EXTRA_RUN_ARGS='--reference-store dir://./tmp/refs'
|
|
227
249
|
```
|
|
228
250
|
|
|
251
|
+
Note: In order to run the tests against the latest `rails/main` commit, you
|
|
252
|
+
need to have Ruby 3.2 or newer installed. To run the tests against all released
|
|
253
|
+
Rails versions, Ruby 3.2 currently suffices.
|
|
254
|
+
|
|
255
|
+
I'd recommend running `USE_DOCKER=1 make test-all` to run against all minimally
|
|
256
|
+
supported Ruby versions in Docker containers. This obviously requires Docker to
|
|
257
|
+
be installed.
|
|
258
|
+
|
|
259
|
+
Note: `USE_DOCKER=1 make test-x` *also* requires to define the endpoint for the
|
|
260
|
+
gem. The easiest way is to declare `TEXD_ENDPOINT=http://$CONTAINER_IP:2201/` in
|
|
261
|
+
addition to `USE_DOCKER=1` (substitute `$CONTAINER_IP` with the *Docker host* IP
|
|
262
|
+
address of the container, usually in 172.17.0.1/16).
|
|
263
|
+
|
|
229
264
|
## Contributing
|
|
230
265
|
|
|
231
266
|
Bug reports and pull requests are welcome on GitHub at https://github.com/digineo/texd.
|
data/gemfiles/rails-7.0/Gemfile
CHANGED
|
@@ -3,5 +3,16 @@
|
|
|
3
3
|
source "https://rubygems.org"
|
|
4
4
|
gemspec path: "../.."
|
|
5
5
|
|
|
6
|
+
gem "nokogiri", "~> 1.15.6" # remove constraint when min. RUBY_VERSION >= 3
|
|
6
7
|
gem "pry-byebug"
|
|
7
|
-
gem "rails", "~> 7.0"
|
|
8
|
+
gem "rails", "~> 7.0.8"
|
|
9
|
+
|
|
10
|
+
gem "concurrent-ruby", "1.3.4"
|
|
11
|
+
|
|
12
|
+
# keep in sync with ../../Gemfile
|
|
13
|
+
group :development, :test do
|
|
14
|
+
gem "combustion"
|
|
15
|
+
gem "rake", "~> 13.0"
|
|
16
|
+
gem "rspec", "~> 3.0"
|
|
17
|
+
gem "rspec-rails"
|
|
18
|
+
end
|
|
@@ -1,184 +1,193 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../..
|
|
3
3
|
specs:
|
|
4
|
-
texd (0.
|
|
4
|
+
texd (0.7.0)
|
|
5
5
|
multipart-post (~> 2.0)
|
|
6
|
-
rails (>= 6.0, <
|
|
6
|
+
rails (>= 6.0, < 9)
|
|
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.8.7)
|
|
12
|
+
actionpack (= 7.0.8.7)
|
|
13
|
+
activesupport (= 7.0.8.7)
|
|
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.8.7)
|
|
17
|
+
actionpack (= 7.0.8.7)
|
|
18
|
+
activejob (= 7.0.8.7)
|
|
19
|
+
activerecord (= 7.0.8.7)
|
|
20
|
+
activestorage (= 7.0.8.7)
|
|
21
|
+
activesupport (= 7.0.8.7)
|
|
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.8.7)
|
|
27
|
+
actionpack (= 7.0.8.7)
|
|
28
|
+
actionview (= 7.0.8.7)
|
|
29
|
+
activejob (= 7.0.8.7)
|
|
30
|
+
activesupport (= 7.0.8.7)
|
|
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.
|
|
39
|
-
rack (~> 2.0, >= 2.2.
|
|
36
|
+
actionpack (7.0.8.7)
|
|
37
|
+
actionview (= 7.0.8.7)
|
|
38
|
+
activesupport (= 7.0.8.7)
|
|
39
|
+
rack (~> 2.0, >= 2.2.4)
|
|
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.8.7)
|
|
44
|
+
actionpack (= 7.0.8.7)
|
|
45
|
+
activerecord (= 7.0.8.7)
|
|
46
|
+
activestorage (= 7.0.8.7)
|
|
47
|
+
activesupport (= 7.0.8.7)
|
|
48
48
|
globalid (>= 0.6.0)
|
|
49
49
|
nokogiri (>= 1.8.5)
|
|
50
|
-
actionview (7.0.
|
|
51
|
-
activesupport (= 7.0.
|
|
50
|
+
actionview (7.0.8.7)
|
|
51
|
+
activesupport (= 7.0.8.7)
|
|
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.8.7)
|
|
57
|
+
activesupport (= 7.0.8.7)
|
|
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.8.7)
|
|
60
|
+
activesupport (= 7.0.8.7)
|
|
61
|
+
activerecord (7.0.8.7)
|
|
62
|
+
activemodel (= 7.0.8.7)
|
|
63
|
+
activesupport (= 7.0.8.7)
|
|
64
|
+
activestorage (7.0.8.7)
|
|
65
|
+
actionpack (= 7.0.8.7)
|
|
66
|
+
activejob (= 7.0.8.7)
|
|
67
|
+
activerecord (= 7.0.8.7)
|
|
68
|
+
activesupport (= 7.0.8.7)
|
|
69
69
|
marcel (~> 1.0)
|
|
70
70
|
mini_mime (>= 1.1.0)
|
|
71
|
-
activesupport (7.0.
|
|
71
|
+
activesupport (7.0.8.7)
|
|
72
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
73
73
|
i18n (>= 1.6, < 2)
|
|
74
74
|
minitest (>= 5.1)
|
|
75
75
|
tzinfo (~> 2.0)
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
base64 (0.3.0)
|
|
77
|
+
builder (3.3.0)
|
|
78
|
+
byebug (12.0.0)
|
|
78
79
|
coderay (1.1.3)
|
|
79
|
-
combustion (1.
|
|
80
|
+
combustion (1.5.0)
|
|
80
81
|
activesupport (>= 3.0.0)
|
|
81
82
|
railties (>= 3.0.0)
|
|
82
83
|
thor (>= 0.14.6)
|
|
83
|
-
concurrent-ruby (1.
|
|
84
|
+
concurrent-ruby (1.3.4)
|
|
84
85
|
crass (1.0.6)
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
date (3.4.1)
|
|
87
|
+
diff-lcs (1.6.2)
|
|
88
|
+
erubi (1.13.1)
|
|
89
|
+
globalid (1.3.0)
|
|
90
|
+
activesupport (>= 6.1)
|
|
91
|
+
i18n (1.14.7)
|
|
90
92
|
concurrent-ruby (~> 1.0)
|
|
91
|
-
loofah (2.
|
|
93
|
+
loofah (2.24.1)
|
|
92
94
|
crass (~> 1.0.2)
|
|
93
|
-
nokogiri (>= 1.
|
|
94
|
-
mail (2.
|
|
95
|
+
nokogiri (>= 1.12.0)
|
|
96
|
+
mail (2.8.1)
|
|
95
97
|
mini_mime (>= 0.1.1)
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
98
|
+
net-imap
|
|
99
|
+
net-pop
|
|
100
|
+
net-smtp
|
|
101
|
+
marcel (1.1.0)
|
|
102
|
+
method_source (1.1.0)
|
|
103
|
+
mini_mime (1.1.5)
|
|
104
|
+
mini_portile2 (2.8.9)
|
|
105
|
+
minitest (5.26.0)
|
|
106
|
+
multipart-post (2.4.1)
|
|
107
|
+
net-imap (0.5.12)
|
|
108
|
+
date
|
|
103
109
|
net-protocol
|
|
104
110
|
net-pop (0.1.2)
|
|
105
111
|
net-protocol
|
|
106
|
-
net-protocol (0.
|
|
112
|
+
net-protocol (0.2.2)
|
|
107
113
|
timeout
|
|
108
|
-
net-smtp (0.
|
|
114
|
+
net-smtp (0.5.1)
|
|
109
115
|
net-protocol
|
|
110
|
-
nio4r (2.
|
|
111
|
-
nokogiri (1.
|
|
112
|
-
mini_portile2 (~> 2.8.
|
|
116
|
+
nio4r (2.7.4)
|
|
117
|
+
nokogiri (1.15.7)
|
|
118
|
+
mini_portile2 (~> 2.8.2)
|
|
113
119
|
racc (~> 1.4)
|
|
114
|
-
nokogiri (1.
|
|
120
|
+
nokogiri (1.15.7-x86_64-linux)
|
|
115
121
|
racc (~> 1.4)
|
|
116
|
-
pry (0.
|
|
122
|
+
pry (0.15.2)
|
|
117
123
|
coderay (~> 1.1)
|
|
118
124
|
method_source (~> 1.0)
|
|
119
|
-
pry-byebug (3.
|
|
120
|
-
byebug (~>
|
|
121
|
-
pry (>= 0.13, < 0.
|
|
122
|
-
racc (1.
|
|
123
|
-
rack (2.2.
|
|
124
|
-
rack-test (2.0
|
|
125
|
+
pry-byebug (3.11.0)
|
|
126
|
+
byebug (~> 12.0)
|
|
127
|
+
pry (>= 0.13, < 0.16)
|
|
128
|
+
racc (1.8.1)
|
|
129
|
+
rack (2.2.20)
|
|
130
|
+
rack-test (2.2.0)
|
|
125
131
|
rack (>= 1.3)
|
|
126
|
-
rails (7.0.
|
|
127
|
-
actioncable (= 7.0.
|
|
128
|
-
actionmailbox (= 7.0.
|
|
129
|
-
actionmailer (= 7.0.
|
|
130
|
-
actionpack (= 7.0.
|
|
131
|
-
actiontext (= 7.0.
|
|
132
|
-
actionview (= 7.0.
|
|
133
|
-
activejob (= 7.0.
|
|
134
|
-
activemodel (= 7.0.
|
|
135
|
-
activerecord (= 7.0.
|
|
136
|
-
activestorage (= 7.0.
|
|
137
|
-
activesupport (= 7.0.
|
|
132
|
+
rails (7.0.8.7)
|
|
133
|
+
actioncable (= 7.0.8.7)
|
|
134
|
+
actionmailbox (= 7.0.8.7)
|
|
135
|
+
actionmailer (= 7.0.8.7)
|
|
136
|
+
actionpack (= 7.0.8.7)
|
|
137
|
+
actiontext (= 7.0.8.7)
|
|
138
|
+
actionview (= 7.0.8.7)
|
|
139
|
+
activejob (= 7.0.8.7)
|
|
140
|
+
activemodel (= 7.0.8.7)
|
|
141
|
+
activerecord (= 7.0.8.7)
|
|
142
|
+
activestorage (= 7.0.8.7)
|
|
143
|
+
activesupport (= 7.0.8.7)
|
|
138
144
|
bundler (>= 1.15.0)
|
|
139
|
-
railties (= 7.0.
|
|
140
|
-
rails-dom-testing (2.0
|
|
141
|
-
activesupport (>=
|
|
145
|
+
railties (= 7.0.8.7)
|
|
146
|
+
rails-dom-testing (2.3.0)
|
|
147
|
+
activesupport (>= 5.0.0)
|
|
148
|
+
minitest
|
|
142
149
|
nokogiri (>= 1.6)
|
|
143
|
-
rails-html-sanitizer (1.
|
|
144
|
-
loofah (~> 2.
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
150
|
+
rails-html-sanitizer (1.6.2)
|
|
151
|
+
loofah (~> 2.21)
|
|
152
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
153
|
+
railties (7.0.8.7)
|
|
154
|
+
actionpack (= 7.0.8.7)
|
|
155
|
+
activesupport (= 7.0.8.7)
|
|
148
156
|
method_source
|
|
149
157
|
rake (>= 12.2)
|
|
150
158
|
thor (~> 1.0)
|
|
151
159
|
zeitwerk (~> 2.5)
|
|
152
|
-
rake (13.0
|
|
153
|
-
rspec (3.
|
|
154
|
-
rspec-core (~> 3.
|
|
155
|
-
rspec-expectations (~> 3.
|
|
156
|
-
rspec-mocks (~> 3.
|
|
157
|
-
rspec-core (3.
|
|
158
|
-
rspec-support (~> 3.
|
|
159
|
-
rspec-expectations (3.
|
|
160
|
+
rake (13.3.0)
|
|
161
|
+
rspec (3.13.1)
|
|
162
|
+
rspec-core (~> 3.13.0)
|
|
163
|
+
rspec-expectations (~> 3.13.0)
|
|
164
|
+
rspec-mocks (~> 3.13.0)
|
|
165
|
+
rspec-core (3.13.6)
|
|
166
|
+
rspec-support (~> 3.13.0)
|
|
167
|
+
rspec-expectations (3.13.5)
|
|
160
168
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
161
|
-
rspec-support (~> 3.
|
|
162
|
-
rspec-mocks (3.
|
|
169
|
+
rspec-support (~> 3.13.0)
|
|
170
|
+
rspec-mocks (3.13.6)
|
|
163
171
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
164
|
-
rspec-support (~> 3.
|
|
165
|
-
rspec-rails (
|
|
166
|
-
actionpack (>=
|
|
167
|
-
activesupport (>=
|
|
168
|
-
railties (>=
|
|
169
|
-
rspec-core (~> 3.
|
|
170
|
-
rspec-expectations (~> 3.
|
|
171
|
-
rspec-mocks (~> 3.
|
|
172
|
-
rspec-support (~> 3.
|
|
173
|
-
rspec-support (3.
|
|
174
|
-
thor (1.
|
|
175
|
-
timeout (0.3
|
|
176
|
-
tzinfo (2.0.
|
|
172
|
+
rspec-support (~> 3.13.0)
|
|
173
|
+
rspec-rails (7.1.1)
|
|
174
|
+
actionpack (>= 7.0)
|
|
175
|
+
activesupport (>= 7.0)
|
|
176
|
+
railties (>= 7.0)
|
|
177
|
+
rspec-core (~> 3.13)
|
|
178
|
+
rspec-expectations (~> 3.13)
|
|
179
|
+
rspec-mocks (~> 3.13)
|
|
180
|
+
rspec-support (~> 3.13)
|
|
181
|
+
rspec-support (3.13.6)
|
|
182
|
+
thor (1.4.0)
|
|
183
|
+
timeout (0.4.3)
|
|
184
|
+
tzinfo (2.0.6)
|
|
177
185
|
concurrent-ruby (~> 1.0)
|
|
178
|
-
websocket-driver (0.
|
|
186
|
+
websocket-driver (0.8.0)
|
|
187
|
+
base64
|
|
179
188
|
websocket-extensions (>= 0.1.0)
|
|
180
189
|
websocket-extensions (0.1.5)
|
|
181
|
-
zeitwerk (2.
|
|
190
|
+
zeitwerk (2.7.3)
|
|
182
191
|
|
|
183
192
|
PLATFORMS
|
|
184
193
|
ruby
|
|
@@ -186,12 +195,14 @@ PLATFORMS
|
|
|
186
195
|
|
|
187
196
|
DEPENDENCIES
|
|
188
197
|
combustion
|
|
198
|
+
concurrent-ruby (= 1.3.4)
|
|
199
|
+
nokogiri (~> 1.15.6)
|
|
189
200
|
pry-byebug
|
|
190
|
-
rails (~> 7.0)
|
|
201
|
+
rails (~> 7.0.8)
|
|
191
202
|
rake (~> 13.0)
|
|
192
203
|
rspec (~> 3.0)
|
|
193
204
|
rspec-rails
|
|
194
205
|
texd!
|
|
195
206
|
|
|
196
207
|
BUNDLED WITH
|
|
197
|
-
2.
|
|
208
|
+
2.7.2
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
gemspec path: "../.."
|
|
5
|
+
|
|
6
|
+
gem "nokogiri", "~> 1.15.5" # remove constraint when min. RUBY_VERSION >= 3
|
|
7
|
+
gem "pry-byebug"
|
|
8
|
+
gem "rails", "~> 7.1.0"
|
|
9
|
+
|
|
10
|
+
gem "concurrent-ruby", "1.3.4"
|
|
11
|
+
|
|
12
|
+
# keep in sync with ../../Gemfile
|
|
13
|
+
group :development, :test do
|
|
14
|
+
gem "combustion"
|
|
15
|
+
gem "rake", "~> 13.0"
|
|
16
|
+
gem "rspec", "~> 3.0"
|
|
17
|
+
gem "rspec-rails"
|
|
18
|
+
end
|