metanorma-ogc 2.9.8 → 2.9.9
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/.rubocop.yml +13 -1
- data/lib/isodoc/ogc/ogc.standard.xsl +317 -144
- data/lib/isodoc/ogc/ogc.white-paper.xsl +63 -19
- data/lib/metanorma/ogc/basicdoc.rng +31 -6
- data/lib/metanorma/ogc/isodoc.rng +22 -3
- data/lib/metanorma/ogc/mathml3-common.rng +257 -0
- data/lib/metanorma/ogc/mathml3-content.rng +1544 -0
- data/lib/metanorma/ogc/mathml3-presentation.rng +2324 -0
- data/lib/metanorma/ogc/mathml3-strict-content.rng +205 -0
- data/lib/metanorma/ogc/mathml3.rng +23 -0
- data/lib/metanorma/ogc/metanorma-mathml.rng +45 -0
- data/lib/metanorma/ogc/reqt.rng +10 -2
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 142079bd041b8a880cfb119263cc299b80dcb1caa59656447848113cb67dfd92
|
|
4
|
+
data.tar.gz: '092ca544076a820250f758b93918f734cb555ac2bf7ec98abe9caaa45f8e7b41'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3041ccc81ac6053f9010e9fab4788da0a199980ebd0e3fab6be800c51b0d2153df7386af5eb1ec7730835dfc705425fa4a297b90d6d1bf1e6cc1ec34fffb11f6
|
|
7
|
+
data.tar.gz: 8a2e8df76396229db1556271de5fc752910e31cd56057b8e20ea71aca003bc4e388956cced0b7b6a46b2f2aa1bf42b2a4ead63affaff86c4bd9f3f99becf22e2
|
data/.rubocop.yml
CHANGED
|
@@ -3,8 +3,20 @@
|
|
|
3
3
|
inherit_from:
|
|
4
4
|
- https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
|
|
5
5
|
|
|
6
|
+
# Rubocop plugins enabled centrally so every metanorma-org gem picks them up
|
|
7
|
+
# on cimas sync — best practice belongs at the shared-template layer, not
|
|
8
|
+
# per-repo. Per ronaldtse feedback on metanorma/ci#332.
|
|
9
|
+
plugins:
|
|
10
|
+
- rubocop-rspec
|
|
11
|
+
- rubocop-performance
|
|
12
|
+
- rubocop-rake
|
|
13
|
+
|
|
6
14
|
# local repo-specific modifications
|
|
7
15
|
# ...
|
|
8
16
|
|
|
9
17
|
AllCops:
|
|
10
|
-
|
|
18
|
+
# 3.3 matches the org-wide minimum being pushed via #274 (Raise minimum
|
|
19
|
+
# Ruby version to 3.3 due to EOL of 3.2 on 2026-03-31). Was 3.4 before
|
|
20
|
+
# this commit — 3.4 was above the org's stated minimum and would have
|
|
21
|
+
# applied Rubocop rules that fail-close on gems still targeting 3.3.
|
|
22
|
+
TargetRubyVersion: 3.3
|