moxml 0.5.64 → 0.5.65

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: e1a9055854c390888e4748d208eb141c9d29e18da7c4d8f1d3b08a706cca1017
4
- data.tar.gz: c55d56edcdcaebb7655cf5cd195df47a2afa6839c8bcd3dfec27376ae98d1e5a
3
+ metadata.gz: 3199cfc9977bc376a2891483d0210b1e75255fecd068e250f840bfbf11f9f901
4
+ data.tar.gz: 2e523e1b057c29dac0f001262052b4160ad768ec382660a7996540f19e15ec97
5
5
  SHA512:
6
- metadata.gz: 2fcfb3c51ed894915e9cd630c6a80fba855c5d6205462b7b3a93c9275dea91d4849c934ef5b75d123301eada12537bf0b0156ae6c42b457b569629bb69f40998
7
- data.tar.gz: bf467c70d4e94befa8e4801d4994b925da448560ad2957a6d60990167909d08e3382273126cac2a11e59cbbb32d7ea8a8e4260ad28ffdefb2209f910ba26cd93
6
+ metadata.gz: 0e56ded22262fe1664d425d34d4d254ebf5e27d6bde8072903f66c70a1556191819246cd3be6b76d2ea0dadfcd5ad92f8e3bb03b3214b21e2a0d013e259c58ed
7
+ data.tar.gz: 63906cfa37fefc1d7527c94963100992461d38bbd7914ebd6c60796a431b0438ec1432ed8810bce084280c856c62858615130be476648dac63bf50095cd5382d
@@ -115,9 +115,13 @@ struct_run
115
115
  wrapper_run
116
116
  nokogiri_run
117
117
 
118
+ nil
119
+ nil
118
120
  struct_us = nil
119
121
  struct_allocs = nil
120
- if Gem::Version.new(Leptris::VERSION) >= Gem::Version.new("1.9.197.1")
122
+ c_face = Moxml::Adapter::Leptris.const_defined?(:NATIVE_PLAN_STRUCTS) &&
123
+ Moxml::Adapter::Leptris::NATIVE_PLAN_STRUCTS
124
+ if c_face
121
125
  struct_us, struct_allocs = bench { struct_run }
122
126
  end
123
127
  plan_us, plan_allocs = bench { plan_run }
@@ -136,5 +140,12 @@ puts format("nokogiri (parse+walk) %<t>8.0f us %<a>7d allocs",
136
140
  t: nk_us, a: nk_allocs)
137
141
  puts format("plan/nokogiri %<r>.2fx (ceiling 1.50x for the CI lock)",
138
142
  r: plan_us / nk_us)
143
+ if struct_us
144
+ puts format("struct/nokogiri %<r>.2fx (ceiling 1.50x for the CI lock)",
145
+ r: struct_us / nk_us)
146
+ end
139
147
 
140
- exit(1) if ENV["LEPTRIS_BENCH_LOCK"] && plan_us > nk_us * 1.5
148
+ if ENV["LEPTRIS_BENCH_LOCK"]
149
+ exit(1) if plan_us > nk_us * 1.5
150
+ exit(1) if struct_us && struct_us > nk_us * 1.5
151
+ end
data/lib/moxml/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Moxml
4
- VERSION = "0.5.64"
4
+ VERSION = "0.5.65"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moxml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.64
4
+ version: 0.5.65
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.