css_inline 0.11.1 → 0.11.2

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: fc02b5a44a61e246ee0e04baa7d9c897809e7bcb3777e8b8cf1987d40d12835e
4
- data.tar.gz: 2f2bbd666aece18451648ba7404dcabffa7cc4ce5bbca67295281d0e0907032c
3
+ metadata.gz: 3f9b907d42508df0923a6f252c9d2635362de2be451be05d9bfb81af8e547081
4
+ data.tar.gz: 29f8cc574b53f78a7c3a2a16866c254061de184c4a64fc43f308e4a548d367cf
5
5
  SHA512:
6
- metadata.gz: a2864e5df1bf930aa1f662acdfc3ce6e77e2c624cf858165fd2cfb37180e6a3123baad36acc57806652c1fe55de63e694ea520b6cf38eda3fd2bd2608361b1da
7
- data.tar.gz: df08a979dbc4e4c033f4ec99b73e6d6cedb1e8ec6c172a224fa54287a67b6cbfec5f2448900719ff6fccc756dfaffbcfb32012147978c70151ee78f6a13e2757
6
+ metadata.gz: dec785c79759c959411617a1dd8bb040e25de8d66e0c72f9f18d95923cd4217750bbb47751e0a6a9da17d6e4645964552375e32dd36153b523858fe376a7b2ef
7
+ data.tar.gz: a6ec06cc6e9e6116e5a65bda549ef9d0ca5d00fc6115278c3d1ce45a1e2e91ae0b1442d77ec3d439404fb438e4bb25f80bb6fe7015b45322267521a982d75bcb
data/README.md CHANGED
@@ -137,15 +137,15 @@ It consistently outperforms `premailer`, offering speed increases often exceedin
137
137
 
138
138
  The table below provides a detailed comparison between `css_inline` and `premailer` when inlining CSS into an HTML document (like in the Usage section above):
139
139
 
140
- | | Size | `css_inline 0.11.1` | `premailer 1.21.0 with Nokogiri 1.15.2` | Difference |
140
+ | | Size | `css_inline 0.11.2` | `premailer 1.21.0 with Nokogiri 1.15.2` | Difference |
141
141
  |-------------------|---------|---------------------|------------------------------------------------|------------|
142
- | Basic usage | 230 B | 8.23 µs | 415.18 µs | **50.93x** |
143
- | Realistic email 1 | 8.58 KB | 162.69 µs | 10.12 ms | **62.21x** |
144
- | Realistic email 2 | 4.3 KB | 116.01 µs | Error: Cannot parse 0 calc((100% - 500px) / 2) | - |
145
- | GitHub Page | 1.81 MB | 308.11 ms | 3.08 s | **9.99x** |
142
+ | Basic usage | 230 B | 8.27 µs | 433.55 µs | **52.35x** |
143
+ | Realistic email 1 | 8.58 KB | 159.20 µs | 9.88 ms | **62.10x** |
144
+ | Realistic email 2 | 4.3 KB | 103.41 µs | Error: Cannot parse 0 calc((100% - 500px) / 2) | - |
145
+ | GitHub Page | 1.81 MB | 301.66 ms | 3.08 s | **10.24x** |
146
146
 
147
147
  Please refer to the `test/bench.rb` file to review the benchmark code.
148
- The results displayed above were measured using stable `rustc 1.74.0` on Ruby `3.2.2`.
148
+ The results displayed above were measured using stable `rustc 1.74.1` on Ruby `3.2.2`.
149
149
 
150
150
  ## Ruby support
151
151
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "css-inline-ruby"
3
- version = "0.11.1"
3
+ version = "0.11.2"
4
4
  authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
5
5
  edition = "2021"
6
6
  readme = "README.rdoc"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: css_inline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Dygalo