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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec2b5d592426f4a6fa1c4bbf53da4f51a9c2b99b4b6fabdbe5202b23d052ecc1
4
- data.tar.gz: 7754004ba70bc28ab7aad50548e5c0308f6d5ad60775b6d6d70c8e88ff6f3258
3
+ metadata.gz: 142079bd041b8a880cfb119263cc299b80dcb1caa59656447848113cb67dfd92
4
+ data.tar.gz: '092ca544076a820250f758b93918f734cb555ac2bf7ec98abe9caaa45f8e7b41'
5
5
  SHA512:
6
- metadata.gz: 94de2606f8d40ddc6987186d23cc7442b4ae9a7db98af690423045c7fd230c9be11930f024a23382e110a9f8224d5e32e8a8efe969a75eaf35f785b0f6557121
7
- data.tar.gz: d273445c5539d185b098fe89e31becb048d23fc602303f0c9ceac3e8e3e5ec13d4056627f53b496d9ca401ccc3b2009212a03e68d5b22b09458626dc24a4361e
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
- TargetRubyVersion: 3.4
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