html-to-markdown 2.5.6-x86_64-linux → 2.30.0-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4195635ca3e860e7d9c951468479b80825e8831c367781f702d7fcb943e38239
4
- data.tar.gz: edb54db5ec22bdd79e8e0b713bc0ddbc35ceed2167b8d93d661e0f886020af1e
3
+ metadata.gz: ee8dd2c455a6a86421af27a2066b1e93f6c460073643222d4ac762eb1f7d0189
4
+ data.tar.gz: 2d15f7312c9127aef99b419fb60fc4be7d63687dfed2dcccf00be9cb098ee3cb
5
5
  SHA512:
6
- metadata.gz: f2530a9afb2f0e921d446809b97c9965c87ef98463b604f37359f89c24f94091d68aef24330b157f7e37a2cd2b4247832222c391540552f474cca0e74fc96292
7
- data.tar.gz: 36def892a428cfbb80af87f9de38181b4538420f7b43ac90da8eb49c1efa15833e2cda5d08b6675c8095bbd032598a12d997d1d79521ee8f5c6ece78fbef9bde
6
+ metadata.gz: 0cb644c37d6bac86198cfc45150b59a7dbda7ffdce7116dd153d045bfd3d182703d9d4f47edf67825d0cd67807c1b09a4d9b527dc3c453291a5bf4c93957ce5b
7
+ data.tar.gz: ec204e318d2d9f01f34e5801958354d7a1266e750bb12abd72b1c07baf9ea904a49d353bfaf65f6b4a2b30d41a94da835e3755f0b5a426a9677cf88e985ffdbb
data/.bundle/config ADDED
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_PATH: "vendor/bundle"
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ vendor/
2
+ .cargo/
3
+ rust-vendor/
data/.rubocop.yml ADDED
@@ -0,0 +1,29 @@
1
+ plugins:
2
+ - rubocop-rspec
3
+
4
+ AllCops:
5
+ NewCops: enable
6
+ TargetRubyVersion: 3.2
7
+ Exclude:
8
+ - "tmp/**/*"
9
+ - "vendor/**/*"
10
+
11
+ Style/Documentation:
12
+ Enabled: false
13
+
14
+ Metrics/BlockLength:
15
+ Exclude:
16
+ - "spec/**/*"
17
+ - "*.gemspec"
18
+
19
+ Metrics/MethodLength:
20
+ Max: 15
21
+
22
+ RSpec/MultipleExpectations:
23
+ Enabled: false
24
+
25
+ RSpec/ExampleLength:
26
+ Enabled: false
27
+
28
+ RSpec/SpecFilePathFormat:
29
+ Enabled: false
data/Gemfile ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ ruby '>= 3.2'
6
+
7
+ gemspec
8
+
9
+ group :development, :test do
10
+ gem 'rake-compiler'
11
+ gem 'rbs', require: false
12
+ gem 'rb_sys' # provides build tooling when developing locally
13
+ gem 'rspec'
14
+ gem 'rubocop', require: false
15
+ gem 'rubocop-rspec', require: false
16
+ gem 'steep', require: false
17
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,210 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ html-to-markdown (2.30.0)
5
+ rb_sys (>= 0.9, < 1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activesupport (8.1.3)
11
+ base64
12
+ bigdecimal
13
+ concurrent-ruby (~> 1.0, >= 1.3.1)
14
+ connection_pool (>= 2.2.5)
15
+ drb
16
+ i18n (>= 1.6, < 2)
17
+ json
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
+ ast (2.4.3)
24
+ base64 (0.3.0)
25
+ bigdecimal (4.0.1)
26
+ concurrent-ruby (1.3.6)
27
+ connection_pool (3.0.2)
28
+ csv (3.3.5)
29
+ diff-lcs (1.6.2)
30
+ drb (2.2.3)
31
+ ffi (1.17.4-aarch64-linux-gnu)
32
+ ffi (1.17.4-arm64-darwin)
33
+ ffi (1.17.4-x64-mingw-ucrt)
34
+ ffi (1.17.4-x86_64-darwin)
35
+ ffi (1.17.4-x86_64-linux-gnu)
36
+ fileutils (1.8.0)
37
+ i18n (1.14.8)
38
+ concurrent-ruby (~> 1.0)
39
+ json (2.19.3)
40
+ language_server-protocol (3.17.0.5)
41
+ lint_roller (1.1.0)
42
+ listen (3.10.0)
43
+ logger
44
+ rb-fsevent (~> 0.10, >= 0.10.3)
45
+ rb-inotify (~> 0.9, >= 0.9.10)
46
+ logger (1.7.0)
47
+ minitest (6.0.2)
48
+ drb (~> 2.0)
49
+ prism (~> 1.5)
50
+ mutex_m (0.3.0)
51
+ parallel (1.27.0)
52
+ parser (3.3.11.1)
53
+ ast (~> 2.4.1)
54
+ racc
55
+ prism (1.9.0)
56
+ racc (1.8.1)
57
+ rainbow (3.1.1)
58
+ rake (13.3.1)
59
+ rake-compiler (1.3.1)
60
+ rake
61
+ rake-compiler-dock (1.11.0)
62
+ rb-fsevent (0.11.2)
63
+ rb-inotify (0.11.1)
64
+ ffi (~> 1.0)
65
+ rb_sys (0.9.124)
66
+ rake-compiler-dock (= 1.11.0)
67
+ rbs (3.10.4)
68
+ logger
69
+ tsort
70
+ regexp_parser (2.11.3)
71
+ rspec (3.13.2)
72
+ rspec-core (~> 3.13.0)
73
+ rspec-expectations (~> 3.13.0)
74
+ rspec-mocks (~> 3.13.0)
75
+ rspec-core (3.13.6)
76
+ rspec-support (~> 3.13.0)
77
+ rspec-expectations (3.13.5)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.13.0)
80
+ rspec-mocks (3.13.8)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.13.0)
83
+ rspec-support (3.13.7)
84
+ rubocop (1.86.0)
85
+ json (~> 2.3)
86
+ language_server-protocol (~> 3.17.0.2)
87
+ lint_roller (~> 1.1.0)
88
+ parallel (~> 1.10)
89
+ parser (>= 3.3.0.2)
90
+ rainbow (>= 2.2.2, < 4.0)
91
+ regexp_parser (>= 2.9.3, < 3.0)
92
+ rubocop-ast (>= 1.49.0, < 2.0)
93
+ ruby-progressbar (~> 1.7)
94
+ unicode-display_width (>= 2.4.0, < 4.0)
95
+ rubocop-ast (1.49.1)
96
+ parser (>= 3.3.7.2)
97
+ prism (~> 1.7)
98
+ rubocop-rspec (3.9.0)
99
+ lint_roller (~> 1.1)
100
+ rubocop (~> 1.81)
101
+ ruby-progressbar (1.13.0)
102
+ securerandom (0.4.1)
103
+ steep (1.10.0)
104
+ activesupport (>= 5.1)
105
+ concurrent-ruby (>= 1.1.10)
106
+ csv (>= 3.0.9)
107
+ fileutils (>= 1.1.0)
108
+ json (>= 2.1.0)
109
+ language_server-protocol (>= 3.17.0.4, < 4.0)
110
+ listen (~> 3.0)
111
+ logger (>= 1.3.0)
112
+ mutex_m (>= 0.3.0)
113
+ parser (>= 3.1)
114
+ rainbow (>= 2.2.2, < 4.0)
115
+ rbs (~> 3.9)
116
+ securerandom (>= 0.1)
117
+ strscan (>= 1.0.0)
118
+ terminal-table (>= 2, < 5)
119
+ uri (>= 0.12.0)
120
+ strscan (3.1.7)
121
+ terminal-table (4.0.0)
122
+ unicode-display_width (>= 1.1.1, < 4)
123
+ tsort (0.2.0)
124
+ tzinfo (2.0.6)
125
+ concurrent-ruby (~> 1.0)
126
+ unicode-display_width (3.2.0)
127
+ unicode-emoji (~> 4.1)
128
+ unicode-emoji (4.2.0)
129
+ uri (1.1.1)
130
+
131
+ PLATFORMS
132
+ aarch64-linux
133
+ arm64-darwin
134
+ x64-mingw-ucrt
135
+ x86_64-darwin
136
+ x86_64-linux
137
+ x86_64-linux-gnu
138
+
139
+ DEPENDENCIES
140
+ html-to-markdown!
141
+ rake-compiler
142
+ rb_sys
143
+ rbs
144
+ rspec
145
+ rubocop
146
+ rubocop-rspec
147
+ steep
148
+
149
+ CHECKSUMS
150
+ activesupport (8.1.3) sha256=21a5e0dfbd4c3ddd9e1317ec6a4d782fa226e7867dc70b0743acda81a1dca20e
151
+ ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
152
+ base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
153
+ bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
154
+ concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
155
+ connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
156
+ csv (3.3.5) sha256=6e5134ac3383ef728b7f02725d9872934f523cb40b961479f69cf3afa6c8e73f
157
+ diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
158
+ drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
159
+ ffi (1.17.4-aarch64-linux-gnu) sha256=b208f06f91ffd8f5e1193da3cae3d2ccfc27fc36fba577baf698d26d91c080df
160
+ ffi (1.17.4-arm64-darwin) sha256=19071aaf1419251b0a46852abf960e77330a3b334d13a4ab51d58b31a937001b
161
+ ffi (1.17.4-x64-mingw-ucrt) sha256=f6ff9618cfccc494138bddade27aa06c74c6c7bc367a1ea1103d80c2fcb9ed35
162
+ ffi (1.17.4-x86_64-darwin) sha256=aa70390523cf3235096cf64962b709b4cfbd5c082a2cb2ae714eb0fe2ccda496
163
+ ffi (1.17.4-x86_64-linux-gnu) sha256=9d3db14c2eae074b382fa9c083fe95aec6e0a1451da249eab096c34002bc752d
164
+ fileutils (1.8.0) sha256=8c6b1df54e2540bdb2f39258f08af78853aa70bad52b4d394bbc6424593c6e02
165
+ html-to-markdown (2.30.0)
166
+ i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
167
+ json (2.19.3) sha256=289b0bb53052a1fa8c34ab33cc750b659ba14a5c45f3fcf4b18762dc67c78646
168
+ language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
169
+ lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
170
+ listen (3.10.0) sha256=c6e182db62143aeccc2e1960033bebe7445309c7272061979bb098d03760c9d2
171
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
172
+ minitest (6.0.2) sha256=db6e57956f6ecc6134683b4c87467d6dd792323c7f0eea7b93f66bd284adbc3d
173
+ mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
174
+ parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
175
+ parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
176
+ prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
177
+ racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
178
+ rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
179
+ rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
180
+ rake-compiler (1.3.1) sha256=6b351612b6e2d73ddd5563ee799bb58685176e05363db6758504bd11573d670a
181
+ rake-compiler-dock (1.11.0) sha256=eab51f2cd533eb35cea6b624a75281f047123e70a64c58b607471bb49428f8c2
182
+ rb-fsevent (0.11.2) sha256=43900b972e7301d6570f64b850a5aa67833ee7d87b458ee92805d56b7318aefe
183
+ rb-inotify (0.11.1) sha256=a0a700441239b0ff18eb65e3866236cd78613d6b9f78fea1f9ac47a85e47be6e
184
+ rb_sys (0.9.124) sha256=513476557b12eaf73764b3da9f8746024558fe8699bda785fb548c9aa3877ae7
185
+ rbs (3.10.4) sha256=b17d7c4be4bb31a11a3b529830f0aa206a807ca42f2e7921a3027dfc6b7e5ce8
186
+ regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
187
+ rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
188
+ rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
189
+ rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
190
+ rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
191
+ rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
192
+ rubocop (1.86.0) sha256=4ff1186fe16ebe9baff5e7aad66bb0ad4cabf5cdcd419f773146dbba2565d186
193
+ rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
194
+ rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
195
+ ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
196
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
197
+ steep (1.10.0) sha256=1b295b55f9aaff1b8d3ee42453ee55bc2a1078fda0268f288edb2dc014f4d7d1
198
+ strscan (3.1.7) sha256=5f76462b94a3ea50b44973225b7d75b2cb96d4e1bee9ef1319b99ca117b72c8c
199
+ terminal-table (4.0.0) sha256=f504793203f8251b2ea7c7068333053f0beeea26093ec9962e62ea79f94301d2
200
+ tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
201
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
202
+ unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
203
+ unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
204
+ uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
205
+
206
+ RUBY VERSION
207
+ ruby 3.4.8
208
+
209
+ BUNDLED WITH
210
+ 4.0.3