texd 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +325 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +238 -0
- data/LICENSE +22 -0
- data/Makefile +54 -0
- data/README.md +96 -0
- data/Rakefile +16 -0
- data/gemfiles/rails-6.0 +7 -0
- data/gemfiles/rails-6.0.lock +181 -0
- data/gemfiles/rails-6.1 +7 -0
- data/gemfiles/rails-6.1.lock +184 -0
- data/gemfiles/rails-7.0 +7 -0
- data/gemfiles/rails-7.0.lock +202 -0
- data/lib/texd/attachment.rb +215 -0
- data/lib/texd/client.rb +164 -0
- data/lib/texd/config.rb +190 -0
- data/lib/texd/document.rb +40 -0
- data/lib/texd/helpers.rb +51 -0
- data/lib/texd/lookup_context.rb +64 -0
- data/lib/texd/railtie.rb +13 -0
- data/lib/texd/version.rb +5 -0
- data/lib/texd.rb +121 -0
- data/texd.gemspec +42 -0
- metadata +163 -0
data/README.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
# texd
|
2
|
+
|
3
|
+
texd is a Ruby client for the [texd web service](https://github.com/digineo/texd).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
You need to meet the following requirements for this gem to work:
|
8
|
+
|
9
|
+
- Ruby 2.7 or later
|
10
|
+
- Rails 6.0 or later
|
11
|
+
|
12
|
+
Older versions of Ruby and Rails *may* work, but this is not guaranteed.
|
13
|
+
|
14
|
+
Install the gem and add to the application's Gemfile by executing:
|
15
|
+
|
16
|
+
$ bundle add texd
|
17
|
+
|
18
|
+
## Configuration
|
19
|
+
|
20
|
+
Befor you can use texd, you need to tell it where your instance is located.
|
21
|
+
|
22
|
+
By default, this gem reads the `TEXD_ENDPOINT` environment variable and falls
|
23
|
+
back to `http://localhost:2201/render`, should it be empty.
|
24
|
+
|
25
|
+
If this does not match your environment, you need can reconfigure texd:
|
26
|
+
|
27
|
+
```rb
|
28
|
+
Texd.configure do |config|
|
29
|
+
config.endpoint = ENV.fetch("TEXD_ENDPOINT", "http://localhost:2201/")
|
30
|
+
end
|
31
|
+
```
|
32
|
+
|
33
|
+
<details><summary>Full default config (click to open)</summary>
|
34
|
+
|
35
|
+
```rb
|
36
|
+
Texd.configure do |config|
|
37
|
+
config.endpoint = ENV.fetch("TEXD_ENDPOINT", "http://localhost:2201/")
|
38
|
+
config.error_format = ENV.fetch("TEXD_ERRORS", "full")
|
39
|
+
config.tex_engine = ENV["TEXD_ENGINE"]
|
40
|
+
config.tex_image = ENV["TEXD_IMAGE"]
|
41
|
+
config.helpers = []
|
42
|
+
end
|
43
|
+
```
|
44
|
+
|
45
|
+
</details>
|
46
|
+
|
47
|
+
For development environments, you can start the texd server like so (requires
|
48
|
+
Docker and about 4GB of disk space for the included TeX live installation):
|
49
|
+
|
50
|
+
```console
|
51
|
+
$ docker run --rm -d -p localhost:2201:2201 --name texd-dev digineogmbh/texd
|
52
|
+
```
|
53
|
+
|
54
|
+
Head to [the texd project page](https://github.com/digineo/texd#readme) to learn
|
55
|
+
about other installation methods.
|
56
|
+
|
57
|
+
## Usage
|
58
|
+
|
59
|
+
> TODO. See https://github.com/amagical-net/rails-latex#label-Synopsis
|
60
|
+
> in the meantime.
|
61
|
+
|
62
|
+
## Development
|
63
|
+
|
64
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
65
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
66
|
+
prompt that will allow you to experiment.
|
67
|
+
|
68
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
69
|
+
release a new version, update the version number in `lib/texd/version.rb`, and
|
70
|
+
then run `bundle exec rake release`, which will create a git tag for the version,
|
71
|
+
push git commits and the created tag, and push the `.gem` file to
|
72
|
+
[rubygems.org](https://rubygems.org).
|
73
|
+
|
74
|
+
You may want to run a texd server instance locally. This is easiest done by
|
75
|
+
calling either `make texd-server` (this requires Docker). If you need to
|
76
|
+
develop/test against the bleeding edge, you can clone and run texd from source:
|
77
|
+
|
78
|
+
```console
|
79
|
+
$ cd ~/code/github.com/digineo
|
80
|
+
$ git clone git@github.com:digineo/texd
|
81
|
+
$ cd texd
|
82
|
+
$ mkdir -p tmp/refs
|
83
|
+
$ make run-container EXTRA_RUN_ARGS='--reference-store dir://./tmp/refs'
|
84
|
+
```
|
85
|
+
|
86
|
+
## Contributing
|
87
|
+
|
88
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/digineo/texd.
|
89
|
+
|
90
|
+
## License
|
91
|
+
|
92
|
+
This gem is open source under the terms of the [MIT license](./LICENSE). It is
|
93
|
+
based heavily on the [`rails-latex` gem](https://github.com/amagical-net/rails-latex).
|
94
|
+
|
95
|
+
- © 2022, Dominik Menke
|
96
|
+
- © 2010-2015, Geoff Jacobsen, Jan Baier and contributors
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
|
5
|
+
require "rspec/core/rake_task"
|
6
|
+
RSpec::Core::RakeTask.new(:spec)
|
7
|
+
|
8
|
+
begin
|
9
|
+
require "rubocop/rake_task"
|
10
|
+
RuboCop::RakeTask.new
|
11
|
+
|
12
|
+
task default: %i[spec rubocop]
|
13
|
+
rescue LoadError
|
14
|
+
# we're likely running `make test`
|
15
|
+
task default: :spec
|
16
|
+
end
|
data/gemfiles/rails-6.0
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
texd (0.1.0)
|
5
|
+
multipart-post (~> 2.0)
|
6
|
+
rails (>= 6.0, < 8)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.0.4.7)
|
12
|
+
actionpack (= 6.0.4.7)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailbox (6.0.4.7)
|
16
|
+
actionpack (= 6.0.4.7)
|
17
|
+
activejob (= 6.0.4.7)
|
18
|
+
activerecord (= 6.0.4.7)
|
19
|
+
activestorage (= 6.0.4.7)
|
20
|
+
activesupport (= 6.0.4.7)
|
21
|
+
mail (>= 2.7.1)
|
22
|
+
actionmailer (6.0.4.7)
|
23
|
+
actionpack (= 6.0.4.7)
|
24
|
+
actionview (= 6.0.4.7)
|
25
|
+
activejob (= 6.0.4.7)
|
26
|
+
mail (~> 2.5, >= 2.5.4)
|
27
|
+
rails-dom-testing (~> 2.0)
|
28
|
+
actionpack (6.0.4.7)
|
29
|
+
actionview (= 6.0.4.7)
|
30
|
+
activesupport (= 6.0.4.7)
|
31
|
+
rack (~> 2.0, >= 2.0.8)
|
32
|
+
rack-test (>= 0.6.3)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
35
|
+
actiontext (6.0.4.7)
|
36
|
+
actionpack (= 6.0.4.7)
|
37
|
+
activerecord (= 6.0.4.7)
|
38
|
+
activestorage (= 6.0.4.7)
|
39
|
+
activesupport (= 6.0.4.7)
|
40
|
+
nokogiri (>= 1.8.5)
|
41
|
+
actionview (6.0.4.7)
|
42
|
+
activesupport (= 6.0.4.7)
|
43
|
+
builder (~> 3.1)
|
44
|
+
erubi (~> 1.4)
|
45
|
+
rails-dom-testing (~> 2.0)
|
46
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
47
|
+
activejob (6.0.4.7)
|
48
|
+
activesupport (= 6.0.4.7)
|
49
|
+
globalid (>= 0.3.6)
|
50
|
+
activemodel (6.0.4.7)
|
51
|
+
activesupport (= 6.0.4.7)
|
52
|
+
activerecord (6.0.4.7)
|
53
|
+
activemodel (= 6.0.4.7)
|
54
|
+
activesupport (= 6.0.4.7)
|
55
|
+
activestorage (6.0.4.7)
|
56
|
+
actionpack (= 6.0.4.7)
|
57
|
+
activejob (= 6.0.4.7)
|
58
|
+
activerecord (= 6.0.4.7)
|
59
|
+
marcel (~> 1.0.0)
|
60
|
+
activesupport (6.0.4.7)
|
61
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
62
|
+
i18n (>= 0.7, < 2)
|
63
|
+
minitest (~> 5.1)
|
64
|
+
tzinfo (~> 1.1)
|
65
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
66
|
+
builder (3.2.4)
|
67
|
+
byebug (11.1.3)
|
68
|
+
coderay (1.1.3)
|
69
|
+
combustion (1.3.5)
|
70
|
+
activesupport (>= 3.0.0)
|
71
|
+
railties (>= 3.0.0)
|
72
|
+
thor (>= 0.14.6)
|
73
|
+
concurrent-ruby (1.1.9)
|
74
|
+
crass (1.0.6)
|
75
|
+
diff-lcs (1.5.0)
|
76
|
+
erubi (1.10.0)
|
77
|
+
globalid (1.0.0)
|
78
|
+
activesupport (>= 5.0)
|
79
|
+
i18n (1.10.0)
|
80
|
+
concurrent-ruby (~> 1.0)
|
81
|
+
loofah (2.15.0)
|
82
|
+
crass (~> 1.0.2)
|
83
|
+
nokogiri (>= 1.5.9)
|
84
|
+
mail (2.7.1)
|
85
|
+
mini_mime (>= 0.1.1)
|
86
|
+
marcel (1.0.2)
|
87
|
+
method_source (1.0.0)
|
88
|
+
mini_mime (1.1.2)
|
89
|
+
minitest (5.15.0)
|
90
|
+
multipart-post (2.1.1)
|
91
|
+
nio4r (2.5.8)
|
92
|
+
nokogiri (1.13.3-x86_64-linux)
|
93
|
+
racc (~> 1.4)
|
94
|
+
pry (0.13.1)
|
95
|
+
coderay (~> 1.1)
|
96
|
+
method_source (~> 1.0)
|
97
|
+
pry-byebug (3.9.0)
|
98
|
+
byebug (~> 11.0)
|
99
|
+
pry (~> 0.13.0)
|
100
|
+
racc (1.6.0)
|
101
|
+
rack (2.2.3)
|
102
|
+
rack-test (1.1.0)
|
103
|
+
rack (>= 1.0, < 3)
|
104
|
+
rails (6.0.4.7)
|
105
|
+
actioncable (= 6.0.4.7)
|
106
|
+
actionmailbox (= 6.0.4.7)
|
107
|
+
actionmailer (= 6.0.4.7)
|
108
|
+
actionpack (= 6.0.4.7)
|
109
|
+
actiontext (= 6.0.4.7)
|
110
|
+
actionview (= 6.0.4.7)
|
111
|
+
activejob (= 6.0.4.7)
|
112
|
+
activemodel (= 6.0.4.7)
|
113
|
+
activerecord (= 6.0.4.7)
|
114
|
+
activestorage (= 6.0.4.7)
|
115
|
+
activesupport (= 6.0.4.7)
|
116
|
+
bundler (>= 1.3.0)
|
117
|
+
railties (= 6.0.4.7)
|
118
|
+
sprockets-rails (>= 2.0.0)
|
119
|
+
rails-dom-testing (2.0.3)
|
120
|
+
activesupport (>= 4.2.0)
|
121
|
+
nokogiri (>= 1.6)
|
122
|
+
rails-html-sanitizer (1.4.2)
|
123
|
+
loofah (~> 2.3)
|
124
|
+
railties (6.0.4.7)
|
125
|
+
actionpack (= 6.0.4.7)
|
126
|
+
activesupport (= 6.0.4.7)
|
127
|
+
method_source
|
128
|
+
rake (>= 0.8.7)
|
129
|
+
thor (>= 0.20.3, < 2.0)
|
130
|
+
rake (13.0.6)
|
131
|
+
rspec (3.11.0)
|
132
|
+
rspec-core (~> 3.11.0)
|
133
|
+
rspec-expectations (~> 3.11.0)
|
134
|
+
rspec-mocks (~> 3.11.0)
|
135
|
+
rspec-core (3.11.0)
|
136
|
+
rspec-support (~> 3.11.0)
|
137
|
+
rspec-expectations (3.11.0)
|
138
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
139
|
+
rspec-support (~> 3.11.0)
|
140
|
+
rspec-mocks (3.11.0)
|
141
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
142
|
+
rspec-support (~> 3.11.0)
|
143
|
+
rspec-rails (5.1.1)
|
144
|
+
actionpack (>= 5.2)
|
145
|
+
activesupport (>= 5.2)
|
146
|
+
railties (>= 5.2)
|
147
|
+
rspec-core (~> 3.10)
|
148
|
+
rspec-expectations (~> 3.10)
|
149
|
+
rspec-mocks (~> 3.10)
|
150
|
+
rspec-support (~> 3.10)
|
151
|
+
rspec-support (3.11.0)
|
152
|
+
sprockets (4.0.3)
|
153
|
+
concurrent-ruby (~> 1.0)
|
154
|
+
rack (> 1, < 3)
|
155
|
+
sprockets-rails (3.4.2)
|
156
|
+
actionpack (>= 5.2)
|
157
|
+
activesupport (>= 5.2)
|
158
|
+
sprockets (>= 3.0.0)
|
159
|
+
thor (1.2.1)
|
160
|
+
thread_safe (0.3.6)
|
161
|
+
tzinfo (1.2.9)
|
162
|
+
thread_safe (~> 0.1)
|
163
|
+
websocket-driver (0.7.5)
|
164
|
+
websocket-extensions (>= 0.1.0)
|
165
|
+
websocket-extensions (0.1.5)
|
166
|
+
zeitwerk (2.5.4)
|
167
|
+
|
168
|
+
PLATFORMS
|
169
|
+
x86_64-linux
|
170
|
+
|
171
|
+
DEPENDENCIES
|
172
|
+
combustion
|
173
|
+
pry-byebug
|
174
|
+
rails (~> 6.0.0)
|
175
|
+
rake (~> 13.0)
|
176
|
+
rspec (~> 3.0)
|
177
|
+
rspec-rails
|
178
|
+
texd!
|
179
|
+
|
180
|
+
BUNDLED WITH
|
181
|
+
2.3.9
|
data/gemfiles/rails-6.1
ADDED
@@ -0,0 +1,184 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
texd (0.1.0)
|
5
|
+
multipart-post (~> 2.0)
|
6
|
+
rails (>= 6.0, < 8)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.1.5)
|
12
|
+
actionpack (= 6.1.5)
|
13
|
+
activesupport (= 6.1.5)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.1.5)
|
17
|
+
actionpack (= 6.1.5)
|
18
|
+
activejob (= 6.1.5)
|
19
|
+
activerecord (= 6.1.5)
|
20
|
+
activestorage (= 6.1.5)
|
21
|
+
activesupport (= 6.1.5)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.1.5)
|
24
|
+
actionpack (= 6.1.5)
|
25
|
+
actionview (= 6.1.5)
|
26
|
+
activejob (= 6.1.5)
|
27
|
+
activesupport (= 6.1.5)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.1.5)
|
31
|
+
actionview (= 6.1.5)
|
32
|
+
activesupport (= 6.1.5)
|
33
|
+
rack (~> 2.0, >= 2.0.9)
|
34
|
+
rack-test (>= 0.6.3)
|
35
|
+
rails-dom-testing (~> 2.0)
|
36
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
+
actiontext (6.1.5)
|
38
|
+
actionpack (= 6.1.5)
|
39
|
+
activerecord (= 6.1.5)
|
40
|
+
activestorage (= 6.1.5)
|
41
|
+
activesupport (= 6.1.5)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.5)
|
44
|
+
activesupport (= 6.1.5)
|
45
|
+
builder (~> 3.1)
|
46
|
+
erubi (~> 1.4)
|
47
|
+
rails-dom-testing (~> 2.0)
|
48
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
+
activejob (6.1.5)
|
50
|
+
activesupport (= 6.1.5)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.1.5)
|
53
|
+
activesupport (= 6.1.5)
|
54
|
+
activerecord (6.1.5)
|
55
|
+
activemodel (= 6.1.5)
|
56
|
+
activesupport (= 6.1.5)
|
57
|
+
activestorage (6.1.5)
|
58
|
+
actionpack (= 6.1.5)
|
59
|
+
activejob (= 6.1.5)
|
60
|
+
activerecord (= 6.1.5)
|
61
|
+
activesupport (= 6.1.5)
|
62
|
+
marcel (~> 1.0)
|
63
|
+
mini_mime (>= 1.1.0)
|
64
|
+
activesupport (6.1.5)
|
65
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
minitest (>= 5.1)
|
68
|
+
tzinfo (~> 2.0)
|
69
|
+
zeitwerk (~> 2.3)
|
70
|
+
builder (3.2.4)
|
71
|
+
byebug (11.1.3)
|
72
|
+
coderay (1.1.3)
|
73
|
+
combustion (1.3.5)
|
74
|
+
activesupport (>= 3.0.0)
|
75
|
+
railties (>= 3.0.0)
|
76
|
+
thor (>= 0.14.6)
|
77
|
+
concurrent-ruby (1.1.9)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.5.0)
|
80
|
+
erubi (1.10.0)
|
81
|
+
globalid (1.0.0)
|
82
|
+
activesupport (>= 5.0)
|
83
|
+
i18n (1.10.0)
|
84
|
+
concurrent-ruby (~> 1.0)
|
85
|
+
loofah (2.15.0)
|
86
|
+
crass (~> 1.0.2)
|
87
|
+
nokogiri (>= 1.5.9)
|
88
|
+
mail (2.7.1)
|
89
|
+
mini_mime (>= 0.1.1)
|
90
|
+
marcel (1.0.2)
|
91
|
+
method_source (1.0.0)
|
92
|
+
mini_mime (1.1.2)
|
93
|
+
minitest (5.15.0)
|
94
|
+
multipart-post (2.1.1)
|
95
|
+
nio4r (2.5.8)
|
96
|
+
nokogiri (1.13.3-x86_64-linux)
|
97
|
+
racc (~> 1.4)
|
98
|
+
pry (0.13.1)
|
99
|
+
coderay (~> 1.1)
|
100
|
+
method_source (~> 1.0)
|
101
|
+
pry-byebug (3.9.0)
|
102
|
+
byebug (~> 11.0)
|
103
|
+
pry (~> 0.13.0)
|
104
|
+
racc (1.6.0)
|
105
|
+
rack (2.2.3)
|
106
|
+
rack-test (1.1.0)
|
107
|
+
rack (>= 1.0, < 3)
|
108
|
+
rails (6.1.5)
|
109
|
+
actioncable (= 6.1.5)
|
110
|
+
actionmailbox (= 6.1.5)
|
111
|
+
actionmailer (= 6.1.5)
|
112
|
+
actionpack (= 6.1.5)
|
113
|
+
actiontext (= 6.1.5)
|
114
|
+
actionview (= 6.1.5)
|
115
|
+
activejob (= 6.1.5)
|
116
|
+
activemodel (= 6.1.5)
|
117
|
+
activerecord (= 6.1.5)
|
118
|
+
activestorage (= 6.1.5)
|
119
|
+
activesupport (= 6.1.5)
|
120
|
+
bundler (>= 1.15.0)
|
121
|
+
railties (= 6.1.5)
|
122
|
+
sprockets-rails (>= 2.0.0)
|
123
|
+
rails-dom-testing (2.0.3)
|
124
|
+
activesupport (>= 4.2.0)
|
125
|
+
nokogiri (>= 1.6)
|
126
|
+
rails-html-sanitizer (1.4.2)
|
127
|
+
loofah (~> 2.3)
|
128
|
+
railties (6.1.5)
|
129
|
+
actionpack (= 6.1.5)
|
130
|
+
activesupport (= 6.1.5)
|
131
|
+
method_source
|
132
|
+
rake (>= 12.2)
|
133
|
+
thor (~> 1.0)
|
134
|
+
rake (13.0.6)
|
135
|
+
rspec (3.11.0)
|
136
|
+
rspec-core (~> 3.11.0)
|
137
|
+
rspec-expectations (~> 3.11.0)
|
138
|
+
rspec-mocks (~> 3.11.0)
|
139
|
+
rspec-core (3.11.0)
|
140
|
+
rspec-support (~> 3.11.0)
|
141
|
+
rspec-expectations (3.11.0)
|
142
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
143
|
+
rspec-support (~> 3.11.0)
|
144
|
+
rspec-mocks (3.11.0)
|
145
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
146
|
+
rspec-support (~> 3.11.0)
|
147
|
+
rspec-rails (5.1.1)
|
148
|
+
actionpack (>= 5.2)
|
149
|
+
activesupport (>= 5.2)
|
150
|
+
railties (>= 5.2)
|
151
|
+
rspec-core (~> 3.10)
|
152
|
+
rspec-expectations (~> 3.10)
|
153
|
+
rspec-mocks (~> 3.10)
|
154
|
+
rspec-support (~> 3.10)
|
155
|
+
rspec-support (3.11.0)
|
156
|
+
sprockets (4.0.3)
|
157
|
+
concurrent-ruby (~> 1.0)
|
158
|
+
rack (> 1, < 3)
|
159
|
+
sprockets-rails (3.4.2)
|
160
|
+
actionpack (>= 5.2)
|
161
|
+
activesupport (>= 5.2)
|
162
|
+
sprockets (>= 3.0.0)
|
163
|
+
thor (1.2.1)
|
164
|
+
tzinfo (2.0.4)
|
165
|
+
concurrent-ruby (~> 1.0)
|
166
|
+
websocket-driver (0.7.5)
|
167
|
+
websocket-extensions (>= 0.1.0)
|
168
|
+
websocket-extensions (0.1.5)
|
169
|
+
zeitwerk (2.5.4)
|
170
|
+
|
171
|
+
PLATFORMS
|
172
|
+
x86_64-linux
|
173
|
+
|
174
|
+
DEPENDENCIES
|
175
|
+
combustion
|
176
|
+
pry-byebug
|
177
|
+
rails (~> 6.1.0)
|
178
|
+
rake (~> 13.0)
|
179
|
+
rspec (~> 3.0)
|
180
|
+
rspec-rails
|
181
|
+
texd!
|
182
|
+
|
183
|
+
BUNDLED WITH
|
184
|
+
2.3.9
|
data/gemfiles/rails-7.0
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
texd (0.1.0)
|
5
|
+
multipart-post (~> 2.0)
|
6
|
+
rails (>= 6.0, < 8)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (7.0.2.3)
|
12
|
+
actionpack (= 7.0.2.3)
|
13
|
+
activesupport (= 7.0.2.3)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (7.0.2.3)
|
17
|
+
actionpack (= 7.0.2.3)
|
18
|
+
activejob (= 7.0.2.3)
|
19
|
+
activerecord (= 7.0.2.3)
|
20
|
+
activestorage (= 7.0.2.3)
|
21
|
+
activesupport (= 7.0.2.3)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
net-imap
|
24
|
+
net-pop
|
25
|
+
net-smtp
|
26
|
+
actionmailer (7.0.2.3)
|
27
|
+
actionpack (= 7.0.2.3)
|
28
|
+
actionview (= 7.0.2.3)
|
29
|
+
activejob (= 7.0.2.3)
|
30
|
+
activesupport (= 7.0.2.3)
|
31
|
+
mail (~> 2.5, >= 2.5.4)
|
32
|
+
net-imap
|
33
|
+
net-pop
|
34
|
+
net-smtp
|
35
|
+
rails-dom-testing (~> 2.0)
|
36
|
+
actionpack (7.0.2.3)
|
37
|
+
actionview (= 7.0.2.3)
|
38
|
+
activesupport (= 7.0.2.3)
|
39
|
+
rack (~> 2.0, >= 2.2.0)
|
40
|
+
rack-test (>= 0.6.3)
|
41
|
+
rails-dom-testing (~> 2.0)
|
42
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
+
actiontext (7.0.2.3)
|
44
|
+
actionpack (= 7.0.2.3)
|
45
|
+
activerecord (= 7.0.2.3)
|
46
|
+
activestorage (= 7.0.2.3)
|
47
|
+
activesupport (= 7.0.2.3)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (7.0.2.3)
|
51
|
+
activesupport (= 7.0.2.3)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.4)
|
54
|
+
rails-dom-testing (~> 2.0)
|
55
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
+
activejob (7.0.2.3)
|
57
|
+
activesupport (= 7.0.2.3)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (7.0.2.3)
|
60
|
+
activesupport (= 7.0.2.3)
|
61
|
+
activerecord (7.0.2.3)
|
62
|
+
activemodel (= 7.0.2.3)
|
63
|
+
activesupport (= 7.0.2.3)
|
64
|
+
activestorage (7.0.2.3)
|
65
|
+
actionpack (= 7.0.2.3)
|
66
|
+
activejob (= 7.0.2.3)
|
67
|
+
activerecord (= 7.0.2.3)
|
68
|
+
activesupport (= 7.0.2.3)
|
69
|
+
marcel (~> 1.0)
|
70
|
+
mini_mime (>= 1.1.0)
|
71
|
+
activesupport (7.0.2.3)
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
|
+
i18n (>= 1.6, < 2)
|
74
|
+
minitest (>= 5.1)
|
75
|
+
tzinfo (~> 2.0)
|
76
|
+
builder (3.2.4)
|
77
|
+
byebug (11.1.3)
|
78
|
+
coderay (1.1.3)
|
79
|
+
combustion (1.3.5)
|
80
|
+
activesupport (>= 3.0.0)
|
81
|
+
railties (>= 3.0.0)
|
82
|
+
thor (>= 0.14.6)
|
83
|
+
concurrent-ruby (1.1.9)
|
84
|
+
crass (1.0.6)
|
85
|
+
diff-lcs (1.5.0)
|
86
|
+
digest (3.1.0)
|
87
|
+
erubi (1.10.0)
|
88
|
+
globalid (1.0.0)
|
89
|
+
activesupport (>= 5.0)
|
90
|
+
i18n (1.10.0)
|
91
|
+
concurrent-ruby (~> 1.0)
|
92
|
+
io-wait (0.2.1)
|
93
|
+
loofah (2.15.0)
|
94
|
+
crass (~> 1.0.2)
|
95
|
+
nokogiri (>= 1.5.9)
|
96
|
+
mail (2.7.1)
|
97
|
+
mini_mime (>= 0.1.1)
|
98
|
+
marcel (1.0.2)
|
99
|
+
method_source (1.0.0)
|
100
|
+
mini_mime (1.1.2)
|
101
|
+
minitest (5.15.0)
|
102
|
+
multipart-post (2.1.1)
|
103
|
+
net-imap (0.2.3)
|
104
|
+
digest
|
105
|
+
net-protocol
|
106
|
+
strscan
|
107
|
+
net-pop (0.1.1)
|
108
|
+
digest
|
109
|
+
net-protocol
|
110
|
+
timeout
|
111
|
+
net-protocol (0.1.2)
|
112
|
+
io-wait
|
113
|
+
timeout
|
114
|
+
net-smtp (0.3.1)
|
115
|
+
digest
|
116
|
+
net-protocol
|
117
|
+
timeout
|
118
|
+
nio4r (2.5.8)
|
119
|
+
nokogiri (1.13.3-x86_64-linux)
|
120
|
+
racc (~> 1.4)
|
121
|
+
pry (0.13.1)
|
122
|
+
coderay (~> 1.1)
|
123
|
+
method_source (~> 1.0)
|
124
|
+
pry-byebug (3.9.0)
|
125
|
+
byebug (~> 11.0)
|
126
|
+
pry (~> 0.13.0)
|
127
|
+
racc (1.6.0)
|
128
|
+
rack (2.2.3)
|
129
|
+
rack-test (1.1.0)
|
130
|
+
rack (>= 1.0, < 3)
|
131
|
+
rails (7.0.2.3)
|
132
|
+
actioncable (= 7.0.2.3)
|
133
|
+
actionmailbox (= 7.0.2.3)
|
134
|
+
actionmailer (= 7.0.2.3)
|
135
|
+
actionpack (= 7.0.2.3)
|
136
|
+
actiontext (= 7.0.2.3)
|
137
|
+
actionview (= 7.0.2.3)
|
138
|
+
activejob (= 7.0.2.3)
|
139
|
+
activemodel (= 7.0.2.3)
|
140
|
+
activerecord (= 7.0.2.3)
|
141
|
+
activestorage (= 7.0.2.3)
|
142
|
+
activesupport (= 7.0.2.3)
|
143
|
+
bundler (>= 1.15.0)
|
144
|
+
railties (= 7.0.2.3)
|
145
|
+
rails-dom-testing (2.0.3)
|
146
|
+
activesupport (>= 4.2.0)
|
147
|
+
nokogiri (>= 1.6)
|
148
|
+
rails-html-sanitizer (1.4.2)
|
149
|
+
loofah (~> 2.3)
|
150
|
+
railties (7.0.2.3)
|
151
|
+
actionpack (= 7.0.2.3)
|
152
|
+
activesupport (= 7.0.2.3)
|
153
|
+
method_source
|
154
|
+
rake (>= 12.2)
|
155
|
+
thor (~> 1.0)
|
156
|
+
zeitwerk (~> 2.5)
|
157
|
+
rake (13.0.6)
|
158
|
+
rspec (3.11.0)
|
159
|
+
rspec-core (~> 3.11.0)
|
160
|
+
rspec-expectations (~> 3.11.0)
|
161
|
+
rspec-mocks (~> 3.11.0)
|
162
|
+
rspec-core (3.11.0)
|
163
|
+
rspec-support (~> 3.11.0)
|
164
|
+
rspec-expectations (3.11.0)
|
165
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
166
|
+
rspec-support (~> 3.11.0)
|
167
|
+
rspec-mocks (3.11.0)
|
168
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
169
|
+
rspec-support (~> 3.11.0)
|
170
|
+
rspec-rails (5.1.1)
|
171
|
+
actionpack (>= 5.2)
|
172
|
+
activesupport (>= 5.2)
|
173
|
+
railties (>= 5.2)
|
174
|
+
rspec-core (~> 3.10)
|
175
|
+
rspec-expectations (~> 3.10)
|
176
|
+
rspec-mocks (~> 3.10)
|
177
|
+
rspec-support (~> 3.10)
|
178
|
+
rspec-support (3.11.0)
|
179
|
+
strscan (3.0.1)
|
180
|
+
thor (1.2.1)
|
181
|
+
timeout (0.2.0)
|
182
|
+
tzinfo (2.0.4)
|
183
|
+
concurrent-ruby (~> 1.0)
|
184
|
+
websocket-driver (0.7.5)
|
185
|
+
websocket-extensions (>= 0.1.0)
|
186
|
+
websocket-extensions (0.1.5)
|
187
|
+
zeitwerk (2.5.4)
|
188
|
+
|
189
|
+
PLATFORMS
|
190
|
+
x86_64-linux
|
191
|
+
|
192
|
+
DEPENDENCIES
|
193
|
+
combustion
|
194
|
+
pry-byebug
|
195
|
+
rails (~> 7.0)
|
196
|
+
rake (~> 13.0)
|
197
|
+
rspec (~> 3.0)
|
198
|
+
rspec-rails
|
199
|
+
texd!
|
200
|
+
|
201
|
+
BUNDLED WITH
|
202
|
+
2.3.9
|