himg 0.0.10-x86_64-linux → 0.0.12-x86_64-linux
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/Appraisals +20 -0
- data/CHANGELOG.md +14 -0
- data/README.md +20 -9
- data/ext/himg/assets/moz-bullet-font.otf +0 -0
- data/gemfiles/plain_ruby.gemfile.lock +3 -77
- data/gemfiles/rails_6.gemfile +1 -0
- data/gemfiles/rails_6.gemfile.lock +3 -47
- data/gemfiles/rails_7_0.gemfile +1 -0
- data/gemfiles/rails_7_0.gemfile.lock +3 -48
- data/gemfiles/rails_7_1.gemfile.lock +2 -46
- data/gemfiles/rails_7_2.gemfile.lock +2 -47
- data/gemfiles/rails_8.gemfile.lock +2 -46
- data/lib/himg/3.2/himg.so +0 -0
- data/lib/himg/3.3/himg.so +0 -0
- data/lib/himg/3.4/himg.so +0 -0
- data/lib/himg/cli.rb +73 -9
- data/lib/himg/version.rb +1 -1
- data/lib/himg.rb +2 -1
- data/logo.svg +57 -0
- data/readme_hero.svg +49 -28
- data/readme_opengraph_comparison.png +0 -0
- data/tagline.svg +23 -0
- data/website/himg-opengraph.png +0 -0
- data/website/index.html +713 -0
- metadata +9 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86747d0277414e8706fa41174ce82ffff9855f41f9841ac84765fd32e15543dc
|
4
|
+
data.tar.gz: f5874103891fa1ae972b470d75e72b4d71ef110f171e5054d7fc0caabedd3b38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7b6fd498922f6f9013ccf3648bb2cb9053b243dac77bd6bb3df295ace6e58511ef968e4f101f20b01b38d72e3cc87f0f7910aa3b0f6544dfff4b1fd6ec34173
|
7
|
+
data.tar.gz: 8a143948c0044c345a9b13695f2f4c6f22fb167609d74213ee6cd275c8918a3d77ece576583950fc8b7ace7b00bc53106c4163e453b2aec8c4cb62ed1ade191f
|
data/Appraisals
CHANGED
@@ -1,39 +1,59 @@
|
|
1
1
|
appraise "plain-ruby" do
|
2
|
+
remove_gem "appraisal"
|
3
|
+
remove_gem "steep"
|
4
|
+
remove_gem "stackprof"
|
2
5
|
remove_gem "rails"
|
3
6
|
remove_gem "puma"
|
4
7
|
end
|
5
8
|
|
6
9
|
appraise "rails-6" do
|
10
|
+
remove_gem "appraisal"
|
11
|
+
remove_gem "steep"
|
12
|
+
remove_gem "stackprof"
|
7
13
|
remove_gem "puma"
|
8
14
|
gem "rails", "~> 6.0"
|
9
15
|
gem "rspec-rails", "~> 6.0"
|
10
16
|
gem "concurrent-ruby", "1.3.4" # Logger dependency fix, see: https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
|
11
17
|
gem "bigdecimal", "~> 1.4" # See: https://github.com/rails/rails/issues/34822
|
12
18
|
gem "drb"
|
19
|
+
gem "mutex_m"
|
13
20
|
end
|
14
21
|
|
15
22
|
appraise "rails-7-0" do
|
23
|
+
remove_gem "appraisal"
|
24
|
+
remove_gem "steep"
|
25
|
+
remove_gem "stackprof"
|
16
26
|
remove_gem "puma"
|
17
27
|
gem "rails", "~> 7.0.0"
|
18
28
|
gem "rspec-rails", "~> 7.0"
|
19
29
|
gem "concurrent-ruby", "1.3.4" # Logger dependency fix, see: https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
|
20
30
|
gem "bigdecimal", "~> 1.4" # See: https://github.com/rails/rails/issues/34822
|
21
31
|
gem "drb"
|
32
|
+
gem "mutex_m"
|
22
33
|
end
|
23
34
|
|
24
35
|
appraise "rails-7-1" do
|
36
|
+
remove_gem "appraisal"
|
37
|
+
remove_gem "steep"
|
38
|
+
remove_gem "stackprof"
|
25
39
|
remove_gem "puma"
|
26
40
|
gem "rails", "~> 7.1.0"
|
27
41
|
gem "rspec-rails", "~> 7.0"
|
28
42
|
end
|
29
43
|
|
30
44
|
appraise "rails-7-2" do
|
45
|
+
remove_gem "appraisal"
|
46
|
+
remove_gem "steep"
|
47
|
+
remove_gem "stackprof"
|
31
48
|
remove_gem "puma"
|
32
49
|
gem "rails", "~> 7.2.0"
|
33
50
|
gem "rspec-rails", "~> 7.0"
|
34
51
|
end
|
35
52
|
|
36
53
|
appraise "rails-8" do
|
54
|
+
remove_gem "appraisal"
|
55
|
+
remove_gem "steep"
|
56
|
+
remove_gem "stackprof"
|
37
57
|
remove_gem "puma"
|
38
58
|
gem "rails", "~> 8.0"
|
39
59
|
gem "rspec-rails", "~> 7.0"
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,20 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
3
|
|
4
|
+
## [0.0.12] - 2025-08-10
|
5
|
+
|
6
|
+
- Himg::Renderer re-used between render calls. Allows us to cache font library loading and the multi-threading runtime.
|
7
|
+
- Resolve race condition which sometimes prevented local resources from being processed.
|
8
|
+
- CLI accepts input piped from stdin, e.g `echo '<h1>Hello</h1>' | himg screenshot output.png`
|
9
|
+
- CLI shows usage help info when screenshot is called with incorrect arguments
|
10
|
+
|
11
|
+
## [0.0.11] - 2025-08-05
|
12
|
+
|
13
|
+
- Adds missing thor dependency for CLI
|
14
|
+
- CLI automatically sets base-url for http(s) resources
|
15
|
+
- Added `--http-headers` CLI option for sending custom headers when fetching the initial SOURCE HTML.
|
16
|
+
- CLI prints `himg help screenshot` USAGE example by default, including version and description.
|
17
|
+
|
4
18
|
## [0.0.10] - 2025-08-01
|
5
19
|
|
6
20
|
- Fixed himg require from native extension
|
data/README.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
-
|
1
|
+
<div align="center">
|
2
|
+
<img src="logo.svg" alt="Himg" width="200">
|
3
|
+
<div>
|
4
|
+
<img src="tagline.svg" alt="The Hyper Image Generator" width="600">
|
5
|
+
</div>
|
2
6
|
|
3
|
-
You give it HTML and it gives back an image
|
7
|
+
<p>You give it HTML and it gives back an image!</p>
|
4
8
|
|
5
|
-
Parses HTML/CSS, fetches nested resources, renders an image. No browser, no fuss
|
9
|
+
<p>Parses HTML/CSS, fetches nested resources, renders an image. No browser, no fuss.</p>
|
6
10
|
|
7
|
-
Perfect for OpenGraph images - stop losing clicks to boring links by adding a rich image preview that showcases your content
|
11
|
+
<p>Perfect for OpenGraph images - stop losing clicks to boring links by adding a rich image preview that showcases your content.</p>
|
12
|
+
</div>
|
8
13
|
|
9
14
|

|
10
15
|
|
@@ -14,8 +19,10 @@ Perfect for OpenGraph images - stop losing clicks to boring links by adding a ri
|
|
14
19
|
|
15
20
|
```bash
|
16
21
|
gem install himg
|
22
|
+
|
17
23
|
himg screenshot path/to/your.html screenshot.png
|
18
|
-
himg screenshot https://
|
24
|
+
himg screenshot https://himg.jamedjo.co.uk himg.png --width=1024 --verbose --no-truncate
|
25
|
+
echo '<h1>Hello Image</h1>' | himg screenshot --stdin output.png
|
19
26
|
```
|
20
27
|
|
21
28
|
### Ruby
|
@@ -48,6 +55,8 @@ OpenGraph tags let messenger apps and social media sites know to use your genera
|
|
48
55
|
<meta property="og:image" content="<%= user_url(@user.username, format: :png) %>" />
|
49
56
|
```
|
50
57
|
|
58
|
+

|
59
|
+
|
51
60
|
# Usage
|
52
61
|
|
53
62
|
Install the gem and add to the application's Gemfile by executing:
|
@@ -68,6 +77,8 @@ bundle add himg
|
|
68
77
|
|disable_fetch | Disables fetching linked resources from disk and network| bool | false |
|
69
78
|
|fetch_timeout | Timeout in seconds for fetching resources | float | 10.0 |
|
70
79
|
|gpu | Use GPU renderer instead of CPU renderer | bool | false |
|
80
|
+
|http_headers | Headers sent when the CLI fetches the SOURCE HTML (CLI only) | hash | nil |
|
81
|
+
|stdin | Read HTML content from stdin instead of a file (CLI only) | bool | false |
|
71
82
|
|
72
83
|
|
73
84
|
### Passing options to a Rails view template
|
@@ -129,7 +140,7 @@ Himg supports a large subset of the HTML and CSS you'd need to get by, but not a
|
|
129
140
|
|
130
141
|
For a full list, see our [snapshot of the blitz.is status page](https://github.com/Jamedjo/himg/issues/2).
|
131
142
|
|
132
|
-
If something you'd like supported is missing and is available [upstream on
|
143
|
+
If something you'd like supported is missing and is available [upstream on Blitz](https://blitz.is/status), please [open an issue](https://github.com/Jamedjo/himg/issues/new).
|
133
144
|
|
134
145
|
|HTML|Status|
|
135
146
|
|-|-|
|
@@ -193,7 +204,7 @@ If something you'd like supported is missing and is available [upstream on blitz
|
|
193
204
|
|
194
205
|
No browser, just basics!
|
195
206
|
|
196
|
-
Himg calls through to the amazing blitz library, which uses Stylo to parse the CSS, servo/html5ever to parse the HTML, fetches network resources, builds a scene graph and hands over to vello to render an image.
|
207
|
+
Himg calls through to the amazing [blitz](https://github.com/DioxusLabs/blitz) library, which uses [Stylo](https://github.com/servo/stylo) to parse the CSS, [servo/html5ever](https://github.com/servo/html5ever) to parse the HTML, fetches network resources, builds a scene graph and hands over to [vello](https://github.com/linebender/vello) to render an image.
|
197
208
|
|
198
209
|
Interaction between Ruby & Rust is done with the help of `magnus`, `rb_sys` and lots of glue code from the `oxidize-rb` team.
|
199
210
|
|
@@ -202,10 +213,9 @@ To play nicely with Rails a template handler is registered, which Rails' `defaul
|
|
202
213
|
## CAVEATS
|
203
214
|
|
204
215
|
1. This is **pre-alpha** software, don't expect it to work perfectly yet.
|
205
|
-
2. Performance needs tuning. Both in the underlying blitz library and how data is passed between Rust and Ruby
|
216
|
+
2. Performance needs tuning. Both in the underlying [Blitz](https://github.com/DioxusLabs/blitz) library and how data is passed between Rust and Ruby
|
206
217
|
3. Network requests can be made: don't use this library with untrusted inputs. Use `disable_fetch` if you don't need to fetch any resources.
|
207
218
|
4. file:// URLs are resolved: this could expose files on your computer. Use `disable_fetch` if you don't need to fetch any resources.
|
208
|
-
5. Native extensions are not yet being published for different os/arch
|
209
219
|
|
210
220
|
# Development
|
211
221
|
|
@@ -219,6 +229,7 @@ To play nicely with Rails a template handler is registered, which Rails' `defaul
|
|
219
229
|
- http://localhost:3000/users/jamedjo will render an HTML page with opengraph meta tags
|
220
230
|
6. To install this gem onto your local machine, run `bundle exec rake install`.
|
221
231
|
7. To simulate a headless server environment without a GPU, use `WGPU_BACKEND=empty bundle exec rspec`
|
232
|
+
8. To profile performance with flamegraphs, run `bin/profile spec/fixtures/profile_test.html`
|
222
233
|
|
223
234
|
### Run cargo example directly generate image in Rust
|
224
235
|
|
Binary file
|
@@ -1,57 +1,19 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
himg (0.0.
|
4
|
+
himg (0.0.11)
|
5
5
|
rb_sys (~> 0.9)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (8.0.2)
|
11
|
-
base64
|
12
|
-
benchmark (>= 0.3)
|
13
|
-
bigdecimal
|
14
|
-
concurrent-ruby (~> 1.0, >= 1.3.1)
|
15
|
-
connection_pool (>= 2.2.5)
|
16
|
-
drb
|
17
|
-
i18n (>= 1.6, < 2)
|
18
|
-
logger (>= 1.4.2)
|
19
|
-
minitest (>= 5.1)
|
20
|
-
securerandom (>= 0.3)
|
21
|
-
tzinfo (~> 2.0, >= 2.0.5)
|
22
|
-
uri (>= 0.13.1)
|
23
|
-
appraisal (2.5.0)
|
24
|
-
bundler
|
25
|
-
rake
|
26
|
-
thor (>= 0.14.0)
|
27
10
|
ast (2.4.3)
|
28
|
-
base64 (0.2.0)
|
29
|
-
benchmark (0.4.0)
|
30
|
-
bigdecimal (3.1.9)
|
31
11
|
bump (0.10.0)
|
32
|
-
concurrent-ruby (1.3.5)
|
33
|
-
connection_pool (2.5.1)
|
34
|
-
csv (3.3.4)
|
35
12
|
date (3.4.1)
|
36
13
|
debug (1.10.0)
|
37
14
|
irb (~> 1.10)
|
38
15
|
reline (>= 0.3.8)
|
39
16
|
diff-lcs (1.6.1)
|
40
|
-
drb (2.2.1)
|
41
|
-
ffi (1.17.2)
|
42
|
-
ffi (1.17.2-aarch64-linux-gnu)
|
43
|
-
ffi (1.17.2-aarch64-linux-musl)
|
44
|
-
ffi (1.17.2-arm-linux-gnu)
|
45
|
-
ffi (1.17.2-arm-linux-musl)
|
46
|
-
ffi (1.17.2-arm64-darwin)
|
47
|
-
ffi (1.17.2-x86-linux-gnu)
|
48
|
-
ffi (1.17.2-x86-linux-musl)
|
49
|
-
ffi (1.17.2-x86_64-darwin)
|
50
|
-
ffi (1.17.2-x86_64-linux-gnu)
|
51
|
-
ffi (1.17.2-x86_64-linux-musl)
|
52
|
-
fileutils (1.7.3)
|
53
|
-
i18n (1.14.7)
|
54
|
-
concurrent-ruby (~> 1.0)
|
55
17
|
io-console (0.8.0)
|
56
18
|
irb (1.15.2)
|
57
19
|
pp (>= 0.6.0)
|
@@ -60,12 +22,6 @@ GEM
|
|
60
22
|
json (2.10.2)
|
61
23
|
language_server-protocol (3.17.0.4)
|
62
24
|
lint_roller (1.1.0)
|
63
|
-
listen (3.9.0)
|
64
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
65
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
66
|
-
logger (1.7.0)
|
67
|
-
minitest (5.25.5)
|
68
|
-
mutex_m (0.3.0)
|
69
25
|
parallel (1.27.0)
|
70
26
|
parser (3.3.8.0)
|
71
27
|
ast (~> 2.4.1)
|
@@ -83,13 +39,8 @@ GEM
|
|
83
39
|
rake-compiler (1.3.0)
|
84
40
|
rake
|
85
41
|
rake-compiler-dock (1.9.1)
|
86
|
-
rb-fsevent (0.11.2)
|
87
|
-
rb-inotify (0.11.1)
|
88
|
-
ffi (~> 1.0)
|
89
42
|
rb_sys (0.9.111)
|
90
43
|
rake-compiler-dock (= 1.9.1)
|
91
|
-
rbs (3.9.2)
|
92
|
-
logger
|
93
44
|
rdoc (6.13.1)
|
94
45
|
psych (>= 4.0.0)
|
95
46
|
regexp_parser (2.10.0)
|
@@ -123,35 +74,11 @@ GEM
|
|
123
74
|
parser (>= 3.3.7.2)
|
124
75
|
prism (~> 1.4)
|
125
76
|
ruby-progressbar (1.13.0)
|
126
|
-
securerandom (0.4.1)
|
127
|
-
steep (1.10.0)
|
128
|
-
activesupport (>= 5.1)
|
129
|
-
concurrent-ruby (>= 1.1.10)
|
130
|
-
csv (>= 3.0.9)
|
131
|
-
fileutils (>= 1.1.0)
|
132
|
-
json (>= 2.1.0)
|
133
|
-
language_server-protocol (>= 3.17.0.4, < 4.0)
|
134
|
-
listen (~> 3.0)
|
135
|
-
logger (>= 1.3.0)
|
136
|
-
mutex_m (>= 0.3.0)
|
137
|
-
parser (>= 3.1)
|
138
|
-
rainbow (>= 2.2.2, < 4.0)
|
139
|
-
rbs (~> 3.9)
|
140
|
-
securerandom (>= 0.1)
|
141
|
-
strscan (>= 1.0.0)
|
142
|
-
terminal-table (>= 2, < 5)
|
143
|
-
uri (>= 0.12.0)
|
144
77
|
stringio (3.1.7)
|
145
|
-
|
146
|
-
terminal-table (4.0.0)
|
147
|
-
unicode-display_width (>= 1.1.1, < 4)
|
148
|
-
thor (1.3.2)
|
149
|
-
tzinfo (2.0.6)
|
150
|
-
concurrent-ruby (~> 1.0)
|
78
|
+
thor (1.4.0)
|
151
79
|
unicode-display_width (3.1.4)
|
152
80
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
153
81
|
unicode-emoji (4.0.4)
|
154
|
-
uri (1.0.3)
|
155
82
|
|
156
83
|
PLATFORMS
|
157
84
|
aarch64-linux-gnu
|
@@ -166,7 +93,6 @@ PLATFORMS
|
|
166
93
|
x86_64-linux-musl
|
167
94
|
|
168
95
|
DEPENDENCIES
|
169
|
-
appraisal
|
170
96
|
bump
|
171
97
|
debug
|
172
98
|
himg!
|
@@ -175,7 +101,7 @@ DEPENDENCIES
|
|
175
101
|
rake-compiler
|
176
102
|
rspec
|
177
103
|
rubocop
|
178
|
-
|
104
|
+
thor
|
179
105
|
|
180
106
|
BUNDLED WITH
|
181
107
|
2.6.7
|
data/gemfiles/rails_6.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
himg (0.0.
|
4
|
+
himg (0.0.11)
|
5
5
|
rb_sys (~> 0.9)
|
6
6
|
|
7
7
|
GEM
|
@@ -66,10 +66,6 @@ GEM
|
|
66
66
|
minitest (>= 5.1)
|
67
67
|
tzinfo (~> 2.0)
|
68
68
|
zeitwerk (~> 2.3)
|
69
|
-
appraisal (2.5.0)
|
70
|
-
bundler
|
71
|
-
rake
|
72
|
-
thor (>= 0.14.0)
|
73
69
|
ast (2.4.3)
|
74
70
|
base64 (0.2.0)
|
75
71
|
bigdecimal (1.4.4)
|
@@ -77,7 +73,6 @@ GEM
|
|
77
73
|
bump (0.10.0)
|
78
74
|
concurrent-ruby (1.3.4)
|
79
75
|
crass (1.0.6)
|
80
|
-
csv (3.3.4)
|
81
76
|
date (3.4.1)
|
82
77
|
debug (1.10.0)
|
83
78
|
irb (~> 1.10)
|
@@ -85,15 +80,6 @@ GEM
|
|
85
80
|
diff-lcs (1.6.1)
|
86
81
|
drb (2.2.1)
|
87
82
|
erubi (1.13.1)
|
88
|
-
ffi (1.17.2-aarch64-linux-gnu)
|
89
|
-
ffi (1.17.2-aarch64-linux-musl)
|
90
|
-
ffi (1.17.2-arm-linux-gnu)
|
91
|
-
ffi (1.17.2-arm-linux-musl)
|
92
|
-
ffi (1.17.2-arm64-darwin)
|
93
|
-
ffi (1.17.2-x86_64-darwin)
|
94
|
-
ffi (1.17.2-x86_64-linux-gnu)
|
95
|
-
ffi (1.17.2-x86_64-linux-musl)
|
96
|
-
fileutils (1.7.3)
|
97
83
|
globalid (1.2.1)
|
98
84
|
activesupport (>= 6.1)
|
99
85
|
i18n (1.14.7)
|
@@ -106,9 +92,6 @@ GEM
|
|
106
92
|
json (2.10.2)
|
107
93
|
language_server-protocol (3.17.0.4)
|
108
94
|
lint_roller (1.1.0)
|
109
|
-
listen (3.9.0)
|
110
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
111
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
112
95
|
logger (1.7.0)
|
113
96
|
loofah (2.24.0)
|
114
97
|
crass (~> 1.0.2)
|
@@ -197,13 +180,8 @@ GEM
|
|
197
180
|
rake-compiler (1.3.0)
|
198
181
|
rake
|
199
182
|
rake-compiler-dock (1.9.1)
|
200
|
-
rb-fsevent (0.11.2)
|
201
|
-
rb-inotify (0.11.1)
|
202
|
-
ffi (~> 1.0)
|
203
183
|
rb_sys (0.9.111)
|
204
184
|
rake-compiler-dock (= 1.9.1)
|
205
|
-
rbs (3.9.2)
|
206
|
-
logger
|
207
185
|
rdoc (6.13.1)
|
208
186
|
psych (>= 4.0.0)
|
209
187
|
regexp_parser (2.10.0)
|
@@ -245,7 +223,6 @@ GEM
|
|
245
223
|
parser (>= 3.3.7.2)
|
246
224
|
prism (~> 1.4)
|
247
225
|
ruby-progressbar (1.13.0)
|
248
|
-
securerandom (0.4.1)
|
249
226
|
sprockets (4.2.2)
|
250
227
|
concurrent-ruby (~> 1.0)
|
251
228
|
logger
|
@@ -254,27 +231,7 @@ GEM
|
|
254
231
|
actionpack (>= 6.1)
|
255
232
|
activesupport (>= 6.1)
|
256
233
|
sprockets (>= 3.0.0)
|
257
|
-
steep (1.10.0)
|
258
|
-
activesupport (>= 5.1)
|
259
|
-
concurrent-ruby (>= 1.1.10)
|
260
|
-
csv (>= 3.0.9)
|
261
|
-
fileutils (>= 1.1.0)
|
262
|
-
json (>= 2.1.0)
|
263
|
-
language_server-protocol (>= 3.17.0.4, < 4.0)
|
264
|
-
listen (~> 3.0)
|
265
|
-
logger (>= 1.3.0)
|
266
|
-
mutex_m (>= 0.3.0)
|
267
|
-
parser (>= 3.1)
|
268
|
-
rainbow (>= 2.2.2, < 4.0)
|
269
|
-
rbs (~> 3.9)
|
270
|
-
securerandom (>= 0.1)
|
271
|
-
strscan (>= 1.0.0)
|
272
|
-
terminal-table (>= 2, < 5)
|
273
|
-
uri (>= 0.12.0)
|
274
234
|
stringio (3.1.7)
|
275
|
-
strscan (3.1.3)
|
276
|
-
terminal-table (4.0.0)
|
277
|
-
unicode-display_width (>= 1.1.1, < 4)
|
278
235
|
thor (1.3.2)
|
279
236
|
timeout (0.4.3)
|
280
237
|
tzinfo (2.0.6)
|
@@ -282,7 +239,6 @@ GEM
|
|
282
239
|
unicode-display_width (3.1.4)
|
283
240
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
284
241
|
unicode-emoji (4.0.4)
|
285
|
-
uri (1.0.3)
|
286
242
|
websocket-driver (0.7.7)
|
287
243
|
base64
|
288
244
|
websocket-extensions (>= 0.1.0)
|
@@ -300,7 +256,6 @@ PLATFORMS
|
|
300
256
|
x86_64-linux-musl
|
301
257
|
|
302
258
|
DEPENDENCIES
|
303
|
-
appraisal
|
304
259
|
bigdecimal (~> 1.4)
|
305
260
|
bump
|
306
261
|
concurrent-ruby (= 1.3.4)
|
@@ -308,13 +263,14 @@ DEPENDENCIES
|
|
308
263
|
drb
|
309
264
|
himg!
|
310
265
|
irb
|
266
|
+
mutex_m
|
311
267
|
rails (~> 6.0)
|
312
268
|
rake
|
313
269
|
rake-compiler
|
314
270
|
rspec
|
315
271
|
rspec-rails (~> 6.0)
|
316
272
|
rubocop
|
317
|
-
|
273
|
+
thor
|
318
274
|
|
319
275
|
BUNDLED WITH
|
320
276
|
2.6.7
|
data/gemfiles/rails_7_0.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
himg (0.0.
|
4
|
+
himg (0.0.11)
|
5
5
|
rb_sys (~> 0.9)
|
6
6
|
|
7
7
|
GEM
|
@@ -72,10 +72,6 @@ GEM
|
|
72
72
|
i18n (>= 1.6, < 2)
|
73
73
|
minitest (>= 5.1)
|
74
74
|
tzinfo (~> 2.0)
|
75
|
-
appraisal (2.5.0)
|
76
|
-
bundler
|
77
|
-
rake
|
78
|
-
thor (>= 0.14.0)
|
79
75
|
ast (2.4.3)
|
80
76
|
base64 (0.2.0)
|
81
77
|
bigdecimal (1.4.4)
|
@@ -83,7 +79,6 @@ GEM
|
|
83
79
|
bump (0.10.0)
|
84
80
|
concurrent-ruby (1.3.4)
|
85
81
|
crass (1.0.6)
|
86
|
-
csv (3.3.4)
|
87
82
|
date (3.4.1)
|
88
83
|
debug (1.10.0)
|
89
84
|
irb (~> 1.10)
|
@@ -91,15 +86,6 @@ GEM
|
|
91
86
|
diff-lcs (1.6.1)
|
92
87
|
drb (2.2.1)
|
93
88
|
erubi (1.13.1)
|
94
|
-
ffi (1.17.2-aarch64-linux-gnu)
|
95
|
-
ffi (1.17.2-aarch64-linux-musl)
|
96
|
-
ffi (1.17.2-arm-linux-gnu)
|
97
|
-
ffi (1.17.2-arm-linux-musl)
|
98
|
-
ffi (1.17.2-arm64-darwin)
|
99
|
-
ffi (1.17.2-x86_64-darwin)
|
100
|
-
ffi (1.17.2-x86_64-linux-gnu)
|
101
|
-
ffi (1.17.2-x86_64-linux-musl)
|
102
|
-
fileutils (1.7.3)
|
103
89
|
globalid (1.2.1)
|
104
90
|
activesupport (>= 6.1)
|
105
91
|
i18n (1.14.7)
|
@@ -112,10 +98,6 @@ GEM
|
|
112
98
|
json (2.10.2)
|
113
99
|
language_server-protocol (3.17.0.4)
|
114
100
|
lint_roller (1.1.0)
|
115
|
-
listen (3.9.0)
|
116
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
117
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
118
|
-
logger (1.7.0)
|
119
101
|
loofah (2.24.0)
|
120
102
|
crass (~> 1.0.2)
|
121
103
|
nokogiri (>= 1.12.0)
|
@@ -203,13 +185,8 @@ GEM
|
|
203
185
|
rake-compiler (1.3.0)
|
204
186
|
rake
|
205
187
|
rake-compiler-dock (1.9.1)
|
206
|
-
rb-fsevent (0.11.2)
|
207
|
-
rb-inotify (0.11.1)
|
208
|
-
ffi (~> 1.0)
|
209
188
|
rb_sys (0.9.111)
|
210
189
|
rake-compiler-dock (= 1.9.1)
|
211
|
-
rbs (3.9.2)
|
212
|
-
logger
|
213
190
|
rdoc (6.13.1)
|
214
191
|
psych (>= 4.0.0)
|
215
192
|
regexp_parser (2.10.0)
|
@@ -251,28 +228,7 @@ GEM
|
|
251
228
|
parser (>= 3.3.7.2)
|
252
229
|
prism (~> 1.4)
|
253
230
|
ruby-progressbar (1.13.0)
|
254
|
-
securerandom (0.4.1)
|
255
|
-
steep (1.10.0)
|
256
|
-
activesupport (>= 5.1)
|
257
|
-
concurrent-ruby (>= 1.1.10)
|
258
|
-
csv (>= 3.0.9)
|
259
|
-
fileutils (>= 1.1.0)
|
260
|
-
json (>= 2.1.0)
|
261
|
-
language_server-protocol (>= 3.17.0.4, < 4.0)
|
262
|
-
listen (~> 3.0)
|
263
|
-
logger (>= 1.3.0)
|
264
|
-
mutex_m (>= 0.3.0)
|
265
|
-
parser (>= 3.1)
|
266
|
-
rainbow (>= 2.2.2, < 4.0)
|
267
|
-
rbs (~> 3.9)
|
268
|
-
securerandom (>= 0.1)
|
269
|
-
strscan (>= 1.0.0)
|
270
|
-
terminal-table (>= 2, < 5)
|
271
|
-
uri (>= 0.12.0)
|
272
231
|
stringio (3.1.7)
|
273
|
-
strscan (3.1.3)
|
274
|
-
terminal-table (4.0.0)
|
275
|
-
unicode-display_width (>= 1.1.1, < 4)
|
276
232
|
thor (1.3.2)
|
277
233
|
timeout (0.4.3)
|
278
234
|
tzinfo (2.0.6)
|
@@ -280,7 +236,6 @@ GEM
|
|
280
236
|
unicode-display_width (3.1.4)
|
281
237
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
282
238
|
unicode-emoji (4.0.4)
|
283
|
-
uri (1.0.3)
|
284
239
|
websocket-driver (0.7.7)
|
285
240
|
base64
|
286
241
|
websocket-extensions (>= 0.1.0)
|
@@ -298,7 +253,6 @@ PLATFORMS
|
|
298
253
|
x86_64-linux-musl
|
299
254
|
|
300
255
|
DEPENDENCIES
|
301
|
-
appraisal
|
302
256
|
bigdecimal (~> 1.4)
|
303
257
|
bump
|
304
258
|
concurrent-ruby (= 1.3.4)
|
@@ -306,13 +260,14 @@ DEPENDENCIES
|
|
306
260
|
drb
|
307
261
|
himg!
|
308
262
|
irb
|
263
|
+
mutex_m
|
309
264
|
rails (~> 7.0.0)
|
310
265
|
rake
|
311
266
|
rake-compiler
|
312
267
|
rspec
|
313
268
|
rspec-rails (~> 7.0)
|
314
269
|
rubocop
|
315
|
-
|
270
|
+
thor
|
316
271
|
|
317
272
|
BUNDLED WITH
|
318
273
|
2.6.7
|