serialbench 0.11.0 → 0.12.0
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 +4 -4
- data/.github/workflows/benchmark.yml +0 -15
- data/Gemfile +3 -6
- data/lib/serialbench/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb1d328cda41b77014e07bcca03086cf860a81a9f02c8863918e37d41ab1e201
|
|
4
|
+
data.tar.gz: 889ba7216bdc343cf5886f2fdaf6257452633161cd291c66e54823caa4cfbb7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64d0c977c7efffaa614ac03425eae1cf5c3e83d44f06bc2ba98da8b03671644887ec8813d8c506987e6d0f0ce74424af5bf74bf025ad9a09303f7d57a0c3ffa4
|
|
7
|
+
data.tar.gz: 4db8775576b87ff4eb268f063e323527f5f639d3c65c55f12f02078d7772ff552dc67578f048179a7c17d0a33a08058527959f96f2b0403595ce349c4bb9c79c
|
|
@@ -131,21 +131,6 @@ jobs:
|
|
|
131
131
|
(cd test_data && sha256sum -c SHA256SUMS) || (cd test_data && shasum -a 256 -c SHA256SUMS)
|
|
132
132
|
shell: bash
|
|
133
133
|
|
|
134
|
-
- name: Point teptris at its vendored DLL (Windows)
|
|
135
|
-
if: startsWith(matrix.platform, 'windows-')
|
|
136
|
-
shell: bash
|
|
137
|
-
run: |
|
|
138
|
-
# teptris 0.1.0's mingw gem vendors the library as teptris.dll but
|
|
139
|
-
# its FFI loader searches libteptris.dll; TEPTRIS_LIB_PATH (the
|
|
140
|
-
# loader's first candidate) bridges until the ext-based gem ships.
|
|
141
|
-
DLL=$(bundle exec ruby -e "print File.join(Gem::Specification.find_by_name('teptris').gem_dir, 'lib', 'teptris.dll')" 2>/dev/null || true)
|
|
142
|
-
if [ -n "$DLL" ] && [ -f "$DLL" ]; then
|
|
143
|
-
echo "TEPTRIS_LIB_PATH=$DLL" >> "$GITHUB_ENV"
|
|
144
|
-
echo "TEPTRIS_LIB_PATH=$DLL"
|
|
145
|
-
else
|
|
146
|
-
echo "no vendored teptris.dll found — teptris stays unavailable on this leg"
|
|
147
|
-
fi
|
|
148
|
-
|
|
149
134
|
- name: Create environment config
|
|
150
135
|
run: |
|
|
151
136
|
mkdir -p config/environments
|
data/Gemfile
CHANGED
|
@@ -12,12 +12,9 @@ unless Gem.win_platform? && RUBY_PLATFORM.include?('aarch64')
|
|
|
12
12
|
gem 'libxml-ruby'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
gem 'leptris', '1.9.
|
|
16
|
-
gem 'yeptris', '0.
|
|
17
|
-
|
|
18
|
-
# path (loads only under exactly Ruby 3.3.12 at hostedtoolcache) and ships no
|
|
19
|
-
# mingw gems. Bump when the ext links portably and windows variants exist.
|
|
20
|
-
gem 'teptris', '0.1.0'
|
|
15
|
+
gem 'leptris', '1.9.193.4' # html5 conformance campaign + memchr tokenizer perf
|
|
16
|
+
gem 'yeptris', '0.6.5.4' # compiled plan walk; dump round-trip fixed (plain keys)
|
|
17
|
+
gem 'teptris', '0.2.36' # full platform matrix incl. mingw - windows coverage unblocked
|
|
21
18
|
gem 'benchmark' # Removed from stdlib in Ruby 4.0
|
|
22
19
|
gem 'base64' # Required for Ruby 3.4+
|
|
23
20
|
gem 'lutaml-model', '~> 0.7'
|
data/lib/serialbench/version.rb
CHANGED