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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/lib/mjml-rb/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 288347d54c01e4a6c60ed76c71ed988cb74f8a88eed9de7d7fb06cf740bd79e5
4
- data.tar.gz: 369dc21e8dd16555318abfd6bc4cfa28649e4bbcce10a8a9b9b6f0613c87fb90
3
+ metadata.gz: 6422177e2bbfc66cd23bdd9a88d8621fff3a8194059eba47e5934054d03e88ed
4
+ data.tar.gz: 312008cba1935cce89440bba65c6b9a78145357c2f13291bdeaeec741f7d831c
5
5
  SHA512:
6
- metadata.gz: 3bf2de79918958b9d4cd9b66191e6b2b52c5494d97d961a129d2d9db7193690a8616063c1168245ced32c736a24caca07aeda5945747d44a972568894b79fd01
7
- data.tar.gz: e4e56ca10989e917fb5b4d14b4d090099b1003c97599d0dd57330a35c09981dee2424568e00a1b144050d5c564da86e5bf713cbf098065585a985b78a48a2039
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` | partial | Supported through `mj-attributes`. |
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
- Remaining top-level migration work is mainly `mj-carousel` and `mj-carousel-image`, plus bringing the remaining renderer-owned partial implementations closer to upstream JS behavior.
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).
@@ -1,3 +1,3 @@
1
1
  module MjmlRb
2
- VERSION = "0.2.5".freeze
2
+ VERSION = "0.2.7".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mjml-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Andriichuk