metanorma-plugin-plantuml 1.0.12 → 1.0.14

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: b635a5dfe71978c68c5d25aad6ed5009977f4a0e3b87a7ea7444468dc23008ff
4
- data.tar.gz: 9760c4cf9e48ebe43d3cf6316595afe312a3018df60791a1f2cad3afe2fadacf
3
+ metadata.gz: 76a24adfb562fe1a39ccb67f4544884e11249e781d1c018cf4fba54d98c5459e
4
+ data.tar.gz: 165e9f1a919f0f7a51cbd929c259ef82ce5ae9e5d694a4bbd36d9cbe32a5cdda
5
5
  SHA512:
6
- metadata.gz: 899eb66d03ea96b6386b3f321efc0553bb26b4ad056ac0b349e77eb0bdac0f5bd0e7fe4883afb7cddf4b2b951049955453ba7e72eca6c5fcfece2204b7e4889f
7
- data.tar.gz: 1efb319e324426556997d9be2a93f3b769a6b6d95cb9c2b8aa01627d73b062a78ad15dc91809732575c41f33d5ee015cd70e5d9d528bf60e88dd93df487fc57d
6
+ metadata.gz: b097cbd66938f606fb2d8375754aa5950d8c6e6d0fa53549d9136620c843adc4b9fc4723cb845e623d3c8a35e0d2d27f5b6303cc57fb1fea078926984ae13ce9
7
+ data.tar.gz: b78558a93c73146a893f77017c2d9959a9235068246b5a15911c419e3f340b4769ba16d3490c376c652242d3658cd01c4df5e1eb76ba8b062f0522807e43476c
@@ -1,5 +1,9 @@
1
1
  name: PlantUML Version Sync
2
2
 
3
+ permissions:
4
+ contents: write
5
+ pull-requests: write
6
+
3
7
  on:
4
8
  schedule:
5
9
  # Check for new PlantUML releases daily at 6 AM UTC
@@ -2,6 +2,9 @@
2
2
  # See https://github.com/metanorma/cimas
3
3
  name: rake
4
4
 
5
+ permissions:
6
+ contents: read
7
+
5
8
  on:
6
9
  push:
7
10
  branches: [ master, main ]
@@ -2,6 +2,11 @@
2
2
  # See https://github.com/metanorma/cimas
3
3
  name: release
4
4
 
5
+ permissions:
6
+ contents: write
7
+ packages: write
8
+ id-token: write
9
+
5
10
  on:
6
11
  workflow_dispatch:
7
12
  inputs:
data/.gitignore CHANGED
@@ -39,3 +39,15 @@ Thumbs.db
39
39
  # Ignore local development files
40
40
  .env
41
41
  .env.local
42
+
43
+ # Ignore generated PlantUML images
44
+ /_plantuml_images/
45
+
46
+ # Ignore AsciiDoc log files
47
+ *.asciidoc.log.txt
48
+
49
+ # Ignore rspec status
50
+ .rspec_status
51
+
52
+ # Ignore rubocop cache
53
+ .rubocop_cache/
data/.rubocop.yml CHANGED
@@ -1,5 +1,8 @@
1
1
  # Auto-generated by Cimas: Do not edit it manually!
2
2
  # See https://github.com/metanorma/cimas
3
+ plugins:
4
+ - rubocop-performance
5
+
3
6
  inherit_from:
4
7
  - .rubocop_todo.yml
5
8
  - https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
data/.rubocop_todo.yml CHANGED
@@ -1,51 +1,16 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2026-05-11 11:55:58 UTC using RuboCop version 1.86.1.
3
+ # on 2026-05-11 22:41:11 UTC using RuboCop version 1.86.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 1
10
- # This cop supports safe autocorrection (--autocorrect).
11
- # Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation.
12
- Bundler/OrderedGems:
13
- Exclude:
14
- - 'Gemfile'
15
-
16
- # Offense count: 1
17
- # This cop supports safe autocorrection (--autocorrect).
18
- Gemspec/RequireMFA:
19
- Exclude:
20
- - 'metanorma-plugin-plantuml.gemspec'
21
-
22
9
  # Offense count: 1
23
10
  Gemspec/RequiredRubyVersion:
24
11
  Exclude:
25
12
  - 'metanorma-plugin-plantuml.gemspec'
26
13
 
27
- # Offense count: 2
28
- # This cop supports safe autocorrection (--autocorrect).
29
- Layout/EmptyLinesAfterModuleInclusion:
30
- Exclude:
31
- - 'lib/metanorma/plugin/plantuml/block_processor.rb'
32
- - 'lib/metanorma/plugin/plantuml/image_block_macro_processor.rb'
33
-
34
- # Offense count: 1
35
- # This cop supports safe autocorrection (--autocorrect).
36
- # Configuration parameters: EnforcedStyle.
37
- # SupportedStyles: normal, indented_internal_methods
38
- Layout/IndentationConsistency:
39
- Exclude:
40
- - 'metanorma-plugin-plantuml.gemspec'
41
-
42
- # Offense count: 1
43
- # This cop supports safe autocorrection (--autocorrect).
44
- # Configuration parameters: AllowDoxygenCommentStyle, AllowGemfileRubyComment, AllowRBSInlineAnnotation, AllowSteepAnnotation.
45
- Layout/LeadingCommentSpace:
46
- Exclude:
47
- - 'spec/spec_helper.rb'
48
-
49
14
  # Offense count: 8
50
15
  # This cop supports safe autocorrection (--autocorrect).
51
16
  # Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
@@ -58,21 +23,6 @@ Layout/LineLength:
58
23
  - 'lib/metanorma/plugin/plantuml/wrapper.rb'
59
24
  - 'spec/metanorma/plugin/plantuml/plantuml_integration_spec.rb'
60
25
 
61
- # Offense count: 4
62
- # This cop supports unsafe autocorrection (--autocorrect-all).
63
- Lint/NonAtomicFileOperation:
64
- Exclude:
65
- - 'lib/metanorma/plugin/plantuml/wrapper.rb'
66
- - 'spec/metanorma/plugin/plantuml/backend_spec.rb'
67
- - 'spec/metanorma/plugin/plantuml/block_processor_spec.rb'
68
- - 'spec/metanorma/plugin/plantuml/filename_handling_spec.rb'
69
-
70
- # Offense count: 1
71
- # This cop supports unsafe autocorrection (--autocorrect-all).
72
- Lint/RedundantDirGlobSort:
73
- Exclude:
74
- - 'spec/metanorma/plugin/plantuml/individual_fixture_tests_spec.rb'
75
-
76
26
  # Offense count: 2
77
27
  # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
78
28
  Metrics/AbcSize:
@@ -89,23 +39,3 @@ Metrics/PerceivedComplexity:
89
39
  Performance/MapMethodChain:
90
40
  Exclude:
91
41
  - 'lib/metanorma/plugin/plantuml/block_processor_base.rb'
92
-
93
- # Offense count: 1
94
- # This cop supports unsafe autocorrection (--autocorrect-all).
95
- Performance/UnfreezeString:
96
- Exclude:
97
- - 'spec/metanorma/plugin/plantuml/individual_fixture_tests_spec.rb'
98
-
99
- # Offense count: 1
100
- # This cop supports safe autocorrection (--autocorrect).
101
- Style/RedundantRegexpArgument:
102
- Exclude:
103
- - 'spec/metanorma/plugin/plantuml/plantuml_integration_spec.rb'
104
-
105
- # Offense count: 2
106
- # This cop supports safe autocorrection (--autocorrect).
107
- # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
108
- # SupportedStyles: single_quotes, double_quotes
109
- Style/StringLiterals:
110
- Exclude:
111
- - 'metanorma-plugin-plantuml.gemspec'
data/Gemfile CHANGED
@@ -7,7 +7,8 @@ gemspec
7
7
  gem "benchmark"
8
8
  gem "canon"
9
9
  gem "metanorma", github: "metanorma/metanorma", branch: "main"
10
- gem "metanorma-plugin-lutaml", github: "metanorma/metanorma-plugin-lutaml", branch: "fix/ruby-4.0"
10
+ gem "metanorma-plugin-lutaml", github: "metanorma/metanorma-plugin-lutaml",
11
+ branch: "fix/ruby-4.0"
11
12
  gem "metanorma-standoc", github: "metanorma/metanorma-standoc", branch: "main"
12
13
  gem "octokit"
13
14
  gem "rake"
data/data/plantuml.jar CHANGED
Binary file
@@ -3,8 +3,8 @@
3
3
  module Metanorma
4
4
  module Plugin
5
5
  module Plantuml
6
- VERSION = "1.0.12"
7
- PLANTUML_JAR_VERSION = "1.2026.2"
6
+ VERSION = "1.0.14"
7
+ PLANTUML_JAR_VERSION = "1.2026.3"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-plugin-plantuml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.12
4
+ version: 1.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.