mjml-rb 0.3.6 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8416ab91e9a9d1c4addbbed2368136715d3726b5524e3cce2f27865c5522b6f2
4
- data.tar.gz: 576c18c2307ca32b30012e2e91450b2888e1f6cf13c9398bd0c7da7ef616bb7d
3
+ metadata.gz: 414eb19865bc6fe6432e0ed0576001365e2c7fcc9e6133005bf4f4cefc89f35b
4
+ data.tar.gz: 420df02142daf9807af8fa96d2ad0ca5ca13f68ffa737781c4c38a85c176d29b
5
5
  SHA512:
6
- metadata.gz: c3ed81729d5550ae8611f0b4fd17545373b8c4041fc286f655c6c975be42182aab441a8c11d07e7a15578a55a6d83849e33e4507f99f45d925ea81212e04607c
7
- data.tar.gz: e407a972325006108bce56759035dfa0b00f93d1917c162d04c2c2ad3d299c0bb03f15a36d3f49c6a26d3d3e2ee058f45fbf29c96a016034c85372af87db4404
6
+ metadata.gz: 77e7e40b344e0560b75ec58d1a5e0364f2b8c148f985cba18c77cc678114381416157709db251ef6e3762886a286b2da2d8bb7e38cbfaed07006ed9161c1d0fe
7
+ data.tar.gz: 2511e7880dcb3dccb36dd97228f1e49b9384b0e2f31ed0c51b91db1287d56bd9c5a40f81637dc30cfb783fbd743129523fffcb93e19cab220227f3e6cd836745
data/README.md CHANGED
@@ -1,16 +1,13 @@
1
1
  # MJML Ruby Implementation
2
2
 
3
- > **⚠️ EXPERIMENTAL USE AT YOUR OWN RISK**
4
- >
5
- > This is an **unofficial, experimental** Ruby port of the MJML email framework.
6
- > It is **not affiliated with or endorsed by the MJML team**.
7
- > The output HTML may differ from the reference `mjml` npm package in subtle ways,
8
- > and not all components or attributes are fully implemented yet.
9
- > **Do not use in production without thorough testing of every template against
10
- > the official npm renderer.** API and output format may change without notice.
11
- > This is a **fully open source project**, and help is welcome:
12
- > feedback, bug reports, test cases, optimizations, proposals, and pull requests.
13
- > No warranty of any kind is provided.
3
+ > **Note:** This is an unofficial Ruby port of the MJML email framework,
4
+ > not affiliated with or endorsed by the MJML team.
5
+ > All 22 MJML v4 components are implemented and tested against npm MJML v4.18.0.
6
+ > Output may differ from the npm renderer in cosmetic ways (whitespace, attribute ordering)
7
+ > but renders identically across email clients.
8
+ > We recommend testing your templates when migrating from the npm renderer.
9
+ > This is a **fully open source project** feedback, bug reports, test cases,
10
+ > and pull requests are welcome!
14
11
 
15
12
  This gem provides a Ruby-first implementation of the main MJML tooling:
16
13
 
@@ -1,3 +1,3 @@
1
1
  module MjmlRb
2
- VERSION = "0.3.6".freeze
2
+ VERSION = "0.3.7".freeze
3
3
  end
data/mjml-rb.gemspec CHANGED
@@ -18,6 +18,6 @@ Gem::Specification.new do |spec|
18
18
  spec.bindir = "bin"
19
19
  spec.executables = ["mjml"]
20
20
  spec.require_paths = ["lib"]
21
- spec.add_dependency "nokogiri"
22
- spec.add_dependency "rexml"
21
+ spec.add_dependency "nokogiri", ">= 1.13"
22
+ spec.add_dependency "rexml", ">= 3.2.5"
23
23
  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.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Andriichuk
@@ -15,28 +15,28 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '0'
18
+ version: '1.13'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: '0'
25
+ version: '1.13'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: rexml
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: '0'
32
+ version: 3.2.5
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '0'
39
+ version: 3.2.5
40
40
  description: Ruby-first MJML compiler API and CLI with compatibility-focused behavior.
41
41
  email:
42
42
  - andreiandriichuk@gmail.com