mjml-rb 0.2.5 → 0.2.7
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/README.md +2 -4
- data/lib/mjml-rb/version.rb +1 -1
- 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: 6422177e2bbfc66cd23bdd9a88d8621fff3a8194059eba47e5934054d03e88ed
|
|
4
|
+
data.tar.gz: 312008cba1935cce89440bba65c6b9a78145357c2f13291bdeaeec741f7d831c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72e7039838d3f29a4d50bf47206e9022f14ad0c433b654909699e3d804e7eae7cfb737c97a140420477eade8457b094826d15f227693c046847c67cd481c59d8
|
|
7
|
+
data.tar.gz: 6030143fd5f9d10fe16249397150815d8d842079cf925e7059deb805b94f866df2c4605c681e004e88ec9af4c27ab34ca6ac6107bd00ebd52d6e0df051cecd6a
|
data/README.md
CHANGED
|
@@ -63,7 +63,7 @@ The table below tracks current JS-to-Ruby migration status for MJML components i
|
|
|
63
63
|
| `mj-raw` | migrated | Implemented in `raw.rb`, including head insertion and top-level `position="file-start"` output before the doctype. |
|
|
64
64
|
| `mj-head` | migrated | Implemented in `head.rb` and dispatches supported head children through component handlers. |
|
|
65
65
|
| `mj-attributes` | migrated | Implemented in `attributes.rb`, including npm-style `mj-class` descendant defaults. |
|
|
66
|
-
| `mj-all` |
|
|
66
|
+
| `mj-all` | migrated | Implemented through `attributes.rb` with npm-style global default attribute precedence. |
|
|
67
67
|
| `mj-class` | migrated | Supported through `attributes.rb`, including nested per-tag descendant defaults. |
|
|
68
68
|
| `mj-title` | migrated | Implemented in `head.rb`. |
|
|
69
69
|
| `mj-preview` | migrated | Implemented in `head.rb`. |
|
|
@@ -76,6 +76,4 @@ The table below tracks current JS-to-Ruby migration status for MJML components i
|
|
|
76
76
|
| `mj-selector` | migrated | Supported as the selector container for `mj-html-attribute` rules. |
|
|
77
77
|
| `mj-html-attribute` | migrated | Supported for injecting custom HTML attributes into matched rendered nodes. |
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
TODO: `mj-html-attributes` currently uses `Nokogiri` to parse rendered HTML and apply CSS-selector-based attribute injections. Rewrite this path to avoid `Nokogiri` if we want to keep the runtime dependency surface minimal.
|
|
79
|
+
A more detailed parity backlog lives in [doc/TODO.md](/doc/TODO.md).
|
data/lib/mjml-rb/version.rb
CHANGED