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.
data/Makefile CHANGED
@@ -1,69 +1,93 @@
1
1
  SPEC =
2
2
 
3
3
  .PHONY: test
4
- test: rails-6.0 rails-6.1 rails-7.0 rubocop # exclude rails-main
4
+ test: test-stable rubocop
5
5
 
6
- # TODO: make rails-* tasks DRY?
6
+ .PHONY: test-stable
7
+ test-stable: rails-7.0 rails-7.1 rails-7.2 rails-8.0
7
8
 
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
9
+ .PHONY: test-all
10
+ test-all: test rails-main rails-8.1
15
11
 
16
- .PHONY: rails-6.1
17
- rails-6.1:
18
- ifeq ($(SPEC),)
19
- export BUNDLE_GEMFILE=gemfiles/rails-6.1/Gemfile && bundle --quiet && bundle exec rake spec
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
- ifeq ($(SPEC),)
27
- export BUNDLE_GEMFILE=gemfiles/rails-7.0/Gemfile && bundle --quiet && bundle exec rake spec
28
- else
29
- export BUNDLE_GEMFILE=gemfiles/rails-7.0/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
30
- endif
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
- ifeq ($(SPEC),)
35
- export BUNDLE_GEMFILE=gemfiles/rails-main/Gemfile && bundle --quiet && bundle exec rake spec
36
- else
37
- export BUNDLE_GEMFILE=gemfiles/rails-main/Gemfile && bundle --quiet && bundle exec rspec $(SPEC)
38
- endif
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
- 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
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
- export BUNDLE_GEMFILE=Gemfile && bundle --quiet && bundle exec rake rubocop:autocorrect
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
- export BUNDLE_GEMFILE=Gemfile && bundle --quiet && bundle exec yard doc --markup markdown 'lib/**/*.rb' - README.md CHANGELOG.md LICENSE
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
- -v $$(pwd)/tmp/jobs:/texd \
64
- -v $$(pwd)/tmp/refs:/refs \
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
- digineode/texd \
67
- --reference-store dir:///refs \
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
+ [![Gem Version](https://badge.fury.io/rb/texd.svg)](https://badge.fury.io/rb/texd)
4
+ [![Build Status](https://github.com/digineo/texd-ruby/actions/workflows/main.yml/badge.svg)](https://github.com/digineo/texd-ruby/actions)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
- You need to meet the following requirements for this gem to work:
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
- - Ruby 2.7 or later
14
- - Rails 6.0 or later
28
+ <details open><summary>Notes</summary>
15
29
 
16
- Older versions of Ruby and Rails *may* work, but this is not guaranteed.
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 either `make texd-server` (this requires Docker). If you need to
219
- develop/test against the bleeding edge, you can clone and run texd from source:
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.
@@ -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.5.1)
4
+ texd (0.7.0)
5
5
  multipart-post (~> 2.0)
6
- rails (>= 6.0, < 8)
6
+ rails (>= 6.0, < 9)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.0.4)
12
- actionpack (= 7.0.4)
13
- activesupport (= 7.0.4)
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.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)
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.4)
27
- actionpack (= 7.0.4)
28
- actionview (= 7.0.4)
29
- activejob (= 7.0.4)
30
- activesupport (= 7.0.4)
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.4)
37
- actionview (= 7.0.4)
38
- activesupport (= 7.0.4)
39
- rack (~> 2.0, >= 2.2.0)
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.4)
44
- actionpack (= 7.0.4)
45
- activerecord (= 7.0.4)
46
- activestorage (= 7.0.4)
47
- activesupport (= 7.0.4)
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.4)
51
- activesupport (= 7.0.4)
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.4)
57
- activesupport (= 7.0.4)
56
+ activejob (7.0.8.7)
57
+ activesupport (= 7.0.8.7)
58
58
  globalid (>= 0.3.6)
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)
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.4)
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
- builder (3.2.4)
77
- byebug (11.1.3)
76
+ base64 (0.3.0)
77
+ builder (3.3.0)
78
+ byebug (12.0.0)
78
79
  coderay (1.1.3)
79
- combustion (1.3.7)
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.1.10)
84
+ concurrent-ruby (1.3.4)
84
85
  crass (1.0.6)
85
- diff-lcs (1.5.0)
86
- erubi (1.11.0)
87
- globalid (1.0.0)
88
- activesupport (>= 5.0)
89
- i18n (1.12.0)
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.19.0)
93
+ loofah (2.24.1)
92
94
  crass (~> 1.0.2)
93
- nokogiri (>= 1.5.9)
94
- mail (2.7.1)
95
+ nokogiri (>= 1.12.0)
96
+ mail (2.8.1)
95
97
  mini_mime (>= 0.1.1)
96
- marcel (1.0.2)
97
- method_source (1.0.0)
98
- mini_mime (1.1.2)
99
- mini_portile2 (2.8.0)
100
- minitest (5.16.3)
101
- multipart-post (2.2.3)
102
- net-imap (0.3.1)
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.1.3)
112
+ net-protocol (0.2.2)
107
113
  timeout
108
- net-smtp (0.3.2)
114
+ net-smtp (0.5.1)
109
115
  net-protocol
110
- nio4r (2.5.8)
111
- nokogiri (1.13.8)
112
- mini_portile2 (~> 2.8.0)
116
+ nio4r (2.7.4)
117
+ nokogiri (1.15.7)
118
+ mini_portile2 (~> 2.8.2)
113
119
  racc (~> 1.4)
114
- nokogiri (1.13.8-x86_64-linux)
120
+ nokogiri (1.15.7-x86_64-linux)
115
121
  racc (~> 1.4)
116
- pry (0.14.1)
122
+ pry (0.15.2)
117
123
  coderay (~> 1.1)
118
124
  method_source (~> 1.0)
119
- pry-byebug (3.10.1)
120
- byebug (~> 11.0)
121
- pry (>= 0.13, < 0.15)
122
- racc (1.6.0)
123
- rack (2.2.4)
124
- rack-test (2.0.2)
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.4)
127
- actioncable (= 7.0.4)
128
- actionmailbox (= 7.0.4)
129
- actionmailer (= 7.0.4)
130
- actionpack (= 7.0.4)
131
- actiontext (= 7.0.4)
132
- actionview (= 7.0.4)
133
- activejob (= 7.0.4)
134
- activemodel (= 7.0.4)
135
- activerecord (= 7.0.4)
136
- activestorage (= 7.0.4)
137
- activesupport (= 7.0.4)
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.4)
140
- rails-dom-testing (2.0.3)
141
- activesupport (>= 4.2.0)
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.4.3)
144
- loofah (~> 2.3)
145
- railties (7.0.4)
146
- actionpack (= 7.0.4)
147
- activesupport (= 7.0.4)
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.6)
153
- rspec (3.11.0)
154
- rspec-core (~> 3.11.0)
155
- rspec-expectations (~> 3.11.0)
156
- rspec-mocks (~> 3.11.0)
157
- rspec-core (3.11.0)
158
- rspec-support (~> 3.11.0)
159
- rspec-expectations (3.11.1)
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.11.0)
162
- rspec-mocks (3.11.1)
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.11.0)
165
- rspec-rails (5.1.2)
166
- actionpack (>= 5.2)
167
- activesupport (>= 5.2)
168
- railties (>= 5.2)
169
- rspec-core (~> 3.10)
170
- rspec-expectations (~> 3.10)
171
- rspec-mocks (~> 3.10)
172
- rspec-support (~> 3.10)
173
- rspec-support (3.11.1)
174
- thor (1.2.1)
175
- timeout (0.3.0)
176
- tzinfo (2.0.5)
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.7.5)
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.6.1)
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.3.9
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