html-to-markdown 3.4.0.pre.rc.45-x86_64-darwin → 3.4.0-x86_64-darwin
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/lib/bin/html-to-markdown +0 -0
- data/lib/html_to_markdown/native.rb +3 -1
- data/lib/html_to_markdown/version.rb +2 -2
- data/lib/html_to_markdown_rb.bundle +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a43c68f1c484b86095605f880fa2d071a52b6cf66e8013e827f2d9db864ca65
|
|
4
|
+
data.tar.gz: 6a092f179386a73705cbc0e4450f0e43100a1d8a4d9fe5821bfdbf683a6d7f43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37562bb7986b9b03ca1b43c34b8111b72ec8902494eb065f2ed8fa1ea4c6b0fed8d8edf9ede92d9dab28164092fd21ca3901968b16ff2716fd9cfc8dfac078f8
|
|
7
|
+
data.tar.gz: '0608d2d82c914b8d3ca8e1faea223f59bfaf0d6fd2af88f45ccdd1a92b6b99fec98e30f01daa984c57efafe43dace16efbf5b0b036fe729ba7dc9755d5404955'
|
data/lib/bin/html-to-markdown
CHANGED
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:b54e7bb2ab55cc6c25c9cac0e62ec66c35fd2d1956ef9ba5e3dc9e7ba5e666a5
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
|
@@ -23,6 +23,7 @@ end
|
|
|
23
23
|
class Hash
|
|
24
24
|
# Support internally-tagged enum accessors like format.excel, format.email, etc.
|
|
25
25
|
# Also support direct field access like format.sheet_count
|
|
26
|
+
# rubocop:disable Metrics/CyclomaticComplexity
|
|
26
27
|
def method_missing(method_name, *args, &block)
|
|
27
28
|
# Try symbol key first (how Magnus converts JSON keys)
|
|
28
29
|
return self[method_name] if key?(method_name)
|
|
@@ -44,6 +45,7 @@ class Hash
|
|
|
44
45
|
|
|
45
46
|
super
|
|
46
47
|
end
|
|
48
|
+
# rubocop:enable Metrics/CyclomaticComplexity
|
|
47
49
|
|
|
48
50
|
def respond_to_missing?(method_name, include_private = false)
|
|
49
51
|
return true if key?(method_name) || key?(method_name.to_s)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:9c58cf63849e82246f03b4fcc3996c264d47f2b2c27e0e8ba6b93eb4a84cb279
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
|
6
6
|
# frozen_string_literal: true
|
|
7
7
|
|
|
8
8
|
module HtmlToMarkdown
|
|
9
|
-
VERSION = '3.4.0
|
|
9
|
+
VERSION = '3.4.0'
|
|
10
10
|
end
|
|
Binary file
|