mn-requirements 0.5.11 → 0.5.12

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: bec40fff7706ba8af4ebbc7e39c0a9110cd5ffc96730cace20586ae6beeb93c2
4
- data.tar.gz: 7c3d55500016be83b0cbb85e2f85dfcbc416208a3d2a48ec8fa527ecd54f4607
3
+ metadata.gz: a9c3746379428caff796ce59625c1642ec417399c50bd0544227a80a0152ca61
4
+ data.tar.gz: 0ebf8d83e75efca52ea7b76b81e6aaf2f8d02236b2ad37ed670784832e1bd9e4
5
5
  SHA512:
6
- metadata.gz: 307c6f011e3b445bdb3cd2a3340286d4012dde7da55bad0473ec15924cc47dbac6661a330e06d4946344e03c9cc40571a59419566fde258aecd0f23f2656ad76
7
- data.tar.gz: 6dadbc51c3ca8304eb295d14175b805709310bf13b7fdf4ddfafa4febac2dd54f3271d4b6eb735b28dc00896c03021d4cd0b6fdee074ad7cde0de071f2a48518
6
+ metadata.gz: a0f30d1674c1d097d8494eac7606d7275a1df0f180ddc9fbc8b92eb9f6ea5020f4470c603f02e1597844e884bf882f86f4ca5787bb2c6bacde9519c39ce40a39
7
+ data.tar.gz: 10547de736b015b3e4ca782ebee129fbfc46b0c27fbe7f946f24ac4e2e42e6323e5599e131442837f3e157714c1596443dcc703eed2596999ed20dbcf6339c18
data/.rubocop.yml CHANGED
@@ -1,10 +1,22 @@
1
1
  # Auto-generated by Cimas: Do not edit it manually!
2
2
  # See https://github.com/metanorma/cimas
3
3
  inherit_from:
4
- - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
4
+ - https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
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
5
13
 
6
14
  # local repo-specific modifications
7
15
  # ...
8
16
 
9
17
  AllCops:
10
- TargetRubyVersion: 2.5
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
@@ -1,4 +1,3 @@
1
- require "isodoc"
2
1
 
3
2
  module Metanorma
4
3
  class Requirements
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  class Requirements
3
- VERSION = "0.5.11".freeze
3
+ VERSION = "0.5.12".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mn-requirements
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.11
4
+ version: 0.5.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2026-05-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: isodoc-i18n
@@ -271,7 +270,6 @@ executables: []
271
270
  extensions: []
272
271
  extra_rdoc_files: []
273
272
  files:
274
- - ".hound.yml"
275
273
  - ".rubocop.yml"
276
274
  - CODE_OF_CONDUCT.md
277
275
  - Gemfile
@@ -307,7 +305,6 @@ homepage: https://github.com/metanorma/mn-requirements
307
305
  licenses:
308
306
  - BSD-2-Clause
309
307
  metadata: {}
310
- post_install_message:
311
308
  rdoc_options: []
312
309
  require_paths:
313
310
  - lib
@@ -322,8 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
322
319
  - !ruby/object:Gem::Version
323
320
  version: '0'
324
321
  requirements: []
325
- rubygems_version: 3.5.22
326
- signing_key:
322
+ rubygems_version: 4.0.10
327
323
  specification_version: 4
328
324
  summary: Requirements processing and rendering according to different models
329
325
  test_files: []
data/.hound.yml DELETED
@@ -1,5 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- ruby:
4
- enabled: true
5
- config_file: .rubocop.yml