metanorma-plugin-plantuml 1.0.0
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 +7 -0
- data/.github/workflows/plantuml-version-sync.yml +113 -0
- data/.github/workflows/rake.yml +15 -0
- data/.github/workflows/release.yml +25 -0
- data/Gemfile +28 -0
- data/LICENSE +25 -0
- data/README.adoc +374 -0
- data/Rakefile +38 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/data/plantuml.jar +0 -0
- data/lib/metanorma/plugin/plantuml/backend.rb +160 -0
- data/lib/metanorma/plugin/plantuml/block_processor.rb +82 -0
- data/lib/metanorma/plugin/plantuml/config.rb +48 -0
- data/lib/metanorma/plugin/plantuml/errors.rb +42 -0
- data/lib/metanorma/plugin/plantuml/utils.rb +28 -0
- data/lib/metanorma/plugin/plantuml/version.rb +8 -0
- data/lib/metanorma/plugin/plantuml/wrapper.rb +256 -0
- data/lib/metanorma-plugin-plantuml.rb +15 -0
- data/metanorma-plugin-plantuml.gemspec +35 -0
- metadata +91 -0
metadata
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: metanorma-plugin-plantuml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ribose Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-08-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: asciidoctor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: isodoc
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Metanorma plugin for PlantUML
|
42
|
+
email:
|
43
|
+
- open.source@ribose.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".github/workflows/plantuml-version-sync.yml"
|
49
|
+
- ".github/workflows/rake.yml"
|
50
|
+
- ".github/workflows/release.yml"
|
51
|
+
- Gemfile
|
52
|
+
- LICENSE
|
53
|
+
- README.adoc
|
54
|
+
- Rakefile
|
55
|
+
- bin/console
|
56
|
+
- bin/setup
|
57
|
+
- data/plantuml.jar
|
58
|
+
- lib/metanorma-plugin-plantuml.rb
|
59
|
+
- lib/metanorma/plugin/plantuml/backend.rb
|
60
|
+
- lib/metanorma/plugin/plantuml/block_processor.rb
|
61
|
+
- lib/metanorma/plugin/plantuml/config.rb
|
62
|
+
- lib/metanorma/plugin/plantuml/errors.rb
|
63
|
+
- lib/metanorma/plugin/plantuml/utils.rb
|
64
|
+
- lib/metanorma/plugin/plantuml/version.rb
|
65
|
+
- lib/metanorma/plugin/plantuml/wrapper.rb
|
66
|
+
- metanorma-plugin-plantuml.gemspec
|
67
|
+
homepage: https://github.com/metanorma/metanorma-plugin-plantuml
|
68
|
+
licenses:
|
69
|
+
- BSD-2-Clause
|
70
|
+
metadata:
|
71
|
+
rubygems_mfa_required: 'false'
|
72
|
+
post_install_message:
|
73
|
+
rdoc_options: []
|
74
|
+
require_paths:
|
75
|
+
- lib
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 2.7.0
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
requirements: []
|
87
|
+
rubygems_version: 3.5.22
|
88
|
+
signing_key:
|
89
|
+
specification_version: 4
|
90
|
+
summary: Metanorma plugin for PlantUML
|
91
|
+
test_files: []
|