plurimath 0.9.6 → 0.9.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 +4 -4
- data/.github/workflows/dependent-repos-js.json +5 -0
- data/.github/workflows/dependent-tests.yml +1 -0
- data/.github/workflows/plurimath_js.yml +18 -0
- data/.github/workflows/rake.yml +11 -0
- data/lib/plurimath/version.rb +1 -1
- data/lib/plurimath/xml_engine/ox.rb +2 -1
- metadata +5 -3
- /data/.github/workflows/{dependent-repos.json → dependent-repos-ruby.json} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 736798b3d03c6e5ce4878bcc3527e29db00d93774be03d158dd5c0017d88dd4d
|
4
|
+
data.tar.gz: f96fe58a6b9016c2528bdcaec9c3d0fb7e618d245c06975429c6c6ac5b5de609
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ace4140d658078575d1e9248bf6b43a668066ba461a02c93d165ef61a7353fea8b1abb0ce7cd342f5741918b0244a6027d81afb1df8816f3830dfd8e6e5188a
|
7
|
+
data.tar.gz: fb5458559b3d9624a21c3359370534cc0a877b23aba739e081025cdcd38e5509bafd001a894e7f2a3b54283c918641ee2aa6c2c543484c5bdfad8e7794d62e74
|
@@ -0,0 +1,18 @@
|
|
1
|
+
name: plurimath-js-test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ main ]
|
6
|
+
tags: [ v* ]
|
7
|
+
pull_request:
|
8
|
+
workflow_dispatch:
|
9
|
+
repository_dispatch:
|
10
|
+
types: [ release-passed ]
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
rake:
|
14
|
+
uses: metanorma/ci/.github/workflows/dependent-rake.yml@main
|
15
|
+
with:
|
16
|
+
command: npm run build
|
17
|
+
matrix_os: '["ubuntu-latest"]'
|
18
|
+
repos-json-file: .github/workflows/dependent-repos-js.json
|
data/.github/workflows/rake.yml
CHANGED
@@ -11,3 +11,14 @@ on:
|
|
11
11
|
jobs:
|
12
12
|
rake:
|
13
13
|
uses: metanorma/ci/.github/workflows/generic-rake.yml@main
|
14
|
+
with:
|
15
|
+
# This is to fix Ruby 3.4 on Windows, as per lutaml/lutaml-model#447
|
16
|
+
before-setup-ruby: |
|
17
|
+
mkdir -p .bundle
|
18
|
+
touch .bundle/config
|
19
|
+
cat .bundle/config
|
20
|
+
echo "---" >> .bundle/config
|
21
|
+
echo 'BUNDLE_BUILD__RUBY___LL: "--with-cflags=-std=gnu17"' >> .bundle/config
|
22
|
+
cat .bundle/config
|
23
|
+
secrets:
|
24
|
+
pat_token: ${{ secrets.PLURIMATH_CI_PAT_TOKEN }}
|
data/lib/plurimath/version.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "plurimath/xml_engine"
|
4
|
-
require "plurimath/xml_engine/ox/element"
|
5
4
|
require "ox"
|
6
5
|
Ox.default_options = { encoding: "UTF-8" }
|
7
6
|
|
@@ -37,3 +36,5 @@ module Plurimath
|
|
37
36
|
end
|
38
37
|
end
|
39
38
|
end
|
39
|
+
|
40
|
+
require "plurimath/xml_engine/ox/element"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plurimath
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ox
|
@@ -116,9 +116,11 @@ executables:
|
|
116
116
|
extensions: []
|
117
117
|
extra_rdoc_files: []
|
118
118
|
files:
|
119
|
-
- ".github/workflows/dependent-repos.json"
|
119
|
+
- ".github/workflows/dependent-repos-js.json"
|
120
|
+
- ".github/workflows/dependent-repos-ruby.json"
|
120
121
|
- ".github/workflows/dependent-tests.yml"
|
121
122
|
- ".github/workflows/gen_docs.yml"
|
123
|
+
- ".github/workflows/plurimath_js.yml"
|
122
124
|
- ".github/workflows/rake.yml"
|
123
125
|
- ".github/workflows/release.yml"
|
124
126
|
- ".gitignore"
|
File without changes
|