mrml 1.4.2-x86_64-darwin → 1.5.0-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '01906699f82acd5b787f5576befe41a5f6cc16607773aaa35bb83305d8461484'
4
- data.tar.gz: 96c1d6db20f77b61adcca573e776544de9d7c6e1414be6688b245255cdc07145
3
+ metadata.gz: cdd0253fed997c46ec286b27bd122a06362bee3f158f80f84cf79c3b7f9a0720
4
+ data.tar.gz: 00ce9f2c34864f73487857af61206223afaf83f418cd67e0b70d5343c454986a
5
5
  SHA512:
6
- metadata.gz: 7a3d8636f127ac99200d1d96c4ba9e7700a91a4158afa85db90b95b98429fa32b089c5129852ce64e0ddea6010fc27e221ed7752972315e0bffc198ac014b408
7
- data.tar.gz: 425ac72d961f61d3116e461f62fef634561e144d75522b67ad4e404beb4e2e9b9d33740918c7b33edc5048a3429ab947a89b1346a0521731a3c29353769efdcd
6
+ metadata.gz: f2afda7d768e7715eee2f83a2e2261a537a20b55ae4c8e874e26e50dec9118ca686bcb8af62b0cc57fbb72c55ce0ff8213180485b4b5a1fad085a8e1571af7d1
7
+ data.tar.gz: 2bce394a3ec50c87a2e5f32eb8a16fc5074467a0bfcc75f06eb104b905e663d8dd28d661a22aad93b32baf465b6040a4788b3907dc2dc52c82969f9b0ddc0c4d
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MRML Ruby
2
2
 
3
- Ruby wrapper for [MRML](https://github.com/jdrouet/mrml), the [MJML](https://mjml.io) markup language implementation in Rust. Rust must be available on your system to install this gem.
3
+ Ruby wrapper for [MRML](https://github.com/jdrouet/mrml), the [MJML](https://mjml.io) markup language implementation in Rust. Rust must be available on your system to install this gem if you use a version below [v1.4.2](https://github.com/hardpixel/mrml-ruby/releases/tag/v1.4.2).
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/mrml.svg)](https://badge.fury.io/rb/mrml)
6
6
  [![Build](https://github.com/hardpixel/mrml-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/hardpixel/mrml-ruby/actions/workflows/build.yml)
@@ -105,6 +105,33 @@ template.to_json # Render as json
105
105
  template.to_hash # Render as hash
106
106
  ```
107
107
 
108
+ ## Benchmark
109
+
110
+ ```
111
+ Warming up --------------------------------------
112
+ mrml 3.069k i/100ms
113
+ mjml 1.000 i/100ms
114
+ Calculating -------------------------------------
115
+ mrml 32.537k (±16.1%) i/s - 156.519k in 5.029759s
116
+ mjml 1.895 (± 0.0%) i/s - 10.000 in 5.283579s
117
+
118
+ Comparison:
119
+ mrml: 32537.2 i/s
120
+ mjml: 1.9 i/s - 17169.16x slower
121
+
122
+ Calculating -------------------------------------
123
+ mrml 3.166k memsize ( 0.000 retained)
124
+ 2.000 objects ( 0.000 retained)
125
+ 1.000 strings ( 0.000 retained)
126
+ mjml 21.253k memsize ( 1.490k retained)
127
+ 107.000 objects ( 15.000 retained)
128
+ 20.000 strings ( 11.000 retained)
129
+
130
+ Comparison:
131
+ mrml: 3166 allocated
132
+ mjml: 21253 allocated - 6.71x more
133
+ ```
134
+
108
135
  ## Development
109
136
 
110
137
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/mrml/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MRML
4
- VERSION = '1.4.2'
4
+ VERSION = '1.5.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mrml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Jonian Guveli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-18 00:00:00.000000000 Z
11
+ date: 2024-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -63,9 +63,12 @@ files:
63
63
  - LICENSE.txt
64
64
  - README.md
65
65
  - lib/mrml.rb
66
+ - lib/mrml/2.6/mrml.bundle
67
+ - lib/mrml/2.7/mrml.bundle
66
68
  - lib/mrml/3.0/mrml.bundle
67
69
  - lib/mrml/3.1/mrml.bundle
68
70
  - lib/mrml/3.2/mrml.bundle
71
+ - lib/mrml/3.3/mrml.bundle
69
72
  - lib/mrml/error.rb
70
73
  - lib/mrml/template.rb
71
74
  - lib/mrml/version.rb
@@ -81,10 +84,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
81
84
  requirements:
82
85
  - - ">="
83
86
  - !ruby/object:Gem::Version
84
- version: '3.0'
87
+ version: '2.6'
85
88
  - - "<"
86
89
  - !ruby/object:Gem::Version
87
- version: 3.3.dev
90
+ version: 3.4.dev
88
91
  required_rubygems_version: !ruby/object:Gem::Requirement
89
92
  requirements:
90
93
  - - ">="