asciidoctor-diagram 2.0.5 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +17 -2
- data/README.adoc +25 -516
- data/Rakefile +1 -1
- data/docs/antora.yml +3 -0
- data/{images → docs/modules/ROOT/images}/asciidoctor-diagram-classes.png +0 -0
- data/docs/modules/ROOT/images/asciidoctor-diagram-process.png +0 -0
- data/docs/modules/ROOT/pages/index.adoc +21 -0
- data/docs/modules/ROOT/partials/advanced.adoc +303 -0
- data/docs/modules/ROOT/partials/create_diagram.adoc +131 -0
- data/docs/modules/ROOT/partials/generate.adoc +15 -0
- data/docs/modules/ROOT/partials/installation.adoc +19 -0
- data/docs/modules/ROOT/partials/uris.adoc +38 -0
- data/examples/features.adoc +1 -1
- data/lib/asciidoctor-diagram/diagram_processor.rb +2 -1
- data/lib/asciidoctor-diagram/ditaa/converter.rb +14 -5
- data/lib/asciidoctor-diagram/ditaa/ditaa-1.3.17.jar +0 -0
- data/lib/asciidoctor-diagram/http/converter.rb +1 -7
- data/lib/asciidoctor-diagram/lilypond/converter.rb +11 -1
- data/lib/asciidoctor-diagram/meme/converter.rb +15 -9
- data/lib/asciidoctor-diagram/mermaid/converter.rb +27 -10
- data/lib/asciidoctor-diagram/pikchr/converter.rb +8 -1
- data/lib/asciidoctor-diagram/plantuml/converter.rb +15 -9
- data/lib/asciidoctor-diagram/plantuml/plantuml-1.3.17.jar +0 -0
- data/lib/asciidoctor-diagram/svgbob/converter.rb +4 -0
- data/lib/asciidoctor-diagram/util/cli.rb +16 -1
- data/lib/asciidoctor-diagram/util/cli_generator.rb +4 -2
- data/lib/asciidoctor-diagram/util/gif.rb +1 -1
- data/lib/asciidoctor-diagram/util/java.rb +5 -3
- data/lib/asciidoctor-diagram/util/java_jruby.rb +4 -1
- data/lib/asciidoctor-diagram/util/java_socket.rb +10 -1
- data/lib/asciidoctor-diagram/util/pdf.rb +1 -1
- data/lib/asciidoctor-diagram/util/png.rb +1 -1
- data/lib/asciidoctor-diagram/util/server-1.3.17.jar +0 -0
- data/lib/asciidoctor-diagram/util/svg.rb +25 -4
- data/lib/asciidoctor-diagram/version.rb +1 -1
- data/spec/a2s_spec.rb +3 -3
- data/spec/blockdiag_spec.rb +3 -3
- data/spec/bytefield_spec.rb +3 -3
- data/spec/ditaa_spec.rb +1 -1
- data/spec/dpic_spec.rb +3 -3
- data/spec/erd_spec.rb +5 -5
- data/spec/lilypond_spec.rb +3 -3
- data/spec/mermaid_spec.rb +37 -0
- data/spec/pikchr_spec.rb +21 -3
- data/spec/shaape_spec.rb +3 -3
- data/spec/svgbob_spec.rb +3 -3
- data/spec/syntrax_spec.rb +3 -3
- data/spec/test_helper.rb +3 -7
- data/spec/tikz_spec.rb +3 -3
- metadata +57 -13
- data/README_zh-CN.adoc +0 -336
- data/images/asciidoctor-diagram-process.png +0 -0
- data/lib/batik-all-1.10.jar +0 -0
- data/lib/ditaa-1.3.15.jar +0 -0
- data/lib/ditaamini-0.12.jar +0 -0
- data/lib/jlatexmath-minimal-1.0.5.jar +0 -0
- data/lib/plantuml-1.3.15.jar +0 -0
- data/lib/plantuml.jar +0 -0
- data/lib/server-1.3.15.jar +0 -0
@@ -10,9 +10,14 @@ module Asciidoctor
|
|
10
10
|
module Java
|
11
11
|
class CommandServer
|
12
12
|
def initialize(java, classpath)
|
13
|
+
classpath.each do |file|
|
14
|
+
raise "Classpath item #{file} does not exist" unless File.exist?(file)
|
15
|
+
end
|
16
|
+
|
13
17
|
args = []
|
14
18
|
args << '-Djava.awt.headless=true'
|
15
19
|
args << '-Djava.net.useSystemProxies=true'
|
20
|
+
args << '-Dfile.encoding=UTF-8'
|
16
21
|
args << '-cp'
|
17
22
|
args << classpath.flatten.map { |jar| ::Asciidoctor::Diagram::Platform.host_os_path(jar).strip }.join(::Asciidoctor::Diagram::Platform.host_os_path_separator)
|
18
23
|
args << 'org.asciidoctor.diagram.StdInOutCommandServer'
|
@@ -58,7 +63,11 @@ module Asciidoctor
|
|
58
63
|
# headers = req[:headers] ||= {}
|
59
64
|
# headers['Host'] = "localhost:#{svr.port}"
|
60
65
|
format_request(req, svr.io)
|
61
|
-
|
66
|
+
begin
|
67
|
+
parse_response(svr.io)
|
68
|
+
rescue
|
69
|
+
raise "Error processing request #{req}\nEncoding of input is #{req[:body].encoding}"
|
70
|
+
end
|
62
71
|
end
|
63
72
|
end
|
64
73
|
end
|
@@ -6,7 +6,7 @@ module Asciidoctor
|
|
6
6
|
module PNG
|
7
7
|
PNG_SIGNATURE = [137, 80, 78, 71, 13, 10, 26, 10].pack('CCCCCCCC')
|
8
8
|
|
9
|
-
def self.post_process_image(data)
|
9
|
+
def self.post_process_image(data, optimise)
|
10
10
|
bio = BinaryIO.new(data)
|
11
11
|
png_signature = bio.read_string(8)
|
12
12
|
raise "Invalid PNG signature" unless png_signature == PNG_SIGNATURE
|
Binary file
|
@@ -1,13 +1,11 @@
|
|
1
1
|
require_relative 'binaryio'
|
2
2
|
require 'rexml/document'
|
3
|
-
require 'bigdecimal'
|
4
|
-
require 'bigdecimal/util'
|
5
3
|
|
6
4
|
module Asciidoctor
|
7
5
|
module Diagram
|
8
6
|
# @private
|
9
7
|
module SVG
|
10
|
-
def self.post_process_image(data)
|
8
|
+
def self.post_process_image(data, optimise)
|
11
9
|
svg = REXML::Document.new(data)
|
12
10
|
|
13
11
|
root = svg.root
|
@@ -38,14 +36,37 @@ module Asciidoctor
|
|
38
36
|
root.add_attribute('viewBox', "0 0 #{width.to_s} #{height.to_s}")
|
39
37
|
end
|
40
38
|
|
39
|
+
indent = 2
|
40
|
+
if optimise
|
41
|
+
remove_comments(svg)
|
42
|
+
indent = -1
|
43
|
+
end
|
44
|
+
|
41
45
|
patched_svg = ""
|
42
|
-
svg.write(:output => patched_svg, :indent =>
|
46
|
+
svg.write(:output => patched_svg, :indent => indent, :transitive => true)
|
43
47
|
|
44
48
|
[patched_svg, width, height]
|
45
49
|
end
|
46
50
|
|
47
51
|
private
|
48
52
|
|
53
|
+
def self.remove_comments(parent)
|
54
|
+
comments = []
|
55
|
+
|
56
|
+
parent.each do |child|
|
57
|
+
case child
|
58
|
+
when REXML::Comment
|
59
|
+
comments << child
|
60
|
+
when REXML::Parent
|
61
|
+
remove_comments(child)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
comments.each do |c|
|
66
|
+
c.remove
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
49
70
|
def self.to_numeric(text)
|
50
71
|
if text.include? '.'
|
51
72
|
text.to_f
|
data/spec/a2s_spec.rb
CHANGED
@@ -20,10 +20,10 @@ code = <<-eos
|
|
20
20
|
'---------------------------------------'
|
21
21
|
eos
|
22
22
|
|
23
|
-
describe Asciidoctor::Diagram::AsciiToSvgBlockMacroProcessor, :
|
23
|
+
describe Asciidoctor::Diagram::AsciiToSvgBlockMacroProcessor, :broken_on_windows do
|
24
24
|
include_examples "block_macro", :a2s, code, [:svg]
|
25
25
|
end
|
26
26
|
|
27
|
-
describe Asciidoctor::Diagram::AsciiToSvgBlockProcessor, :
|
27
|
+
describe Asciidoctor::Diagram::AsciiToSvgBlockProcessor, :broken_on_windows do
|
28
28
|
include_examples "block", :svgbob, code, [:svg]
|
29
|
-
end
|
29
|
+
end
|
data/spec/blockdiag_spec.rb
CHANGED
@@ -7,10 +7,10 @@ blockdiag {
|
|
7
7
|
}
|
8
8
|
eos
|
9
9
|
|
10
|
-
describe Asciidoctor::Diagram::BlockDiagBlockMacroProcessor
|
10
|
+
describe Asciidoctor::Diagram::BlockDiagBlockMacroProcessor do
|
11
11
|
include_examples "block_macro", :blockdiag, code, [:png, :svg, :pdf]
|
12
12
|
end
|
13
13
|
|
14
|
-
describe Asciidoctor::Diagram::BlockDiagBlockProcessor
|
14
|
+
describe Asciidoctor::Diagram::BlockDiagBlockProcessor do
|
15
15
|
include_examples "block", :blockdiag, code, [:png, :svg, :pdf]
|
16
|
-
end
|
16
|
+
end
|
data/spec/bytefield_spec.rb
CHANGED
@@ -83,10 +83,10 @@ code = <<-eos
|
|
83
83
|
(draw-bottom)
|
84
84
|
eos
|
85
85
|
|
86
|
-
describe Asciidoctor::Diagram::BytefieldBlockMacroProcessor, :
|
86
|
+
describe Asciidoctor::Diagram::BytefieldBlockMacroProcessor, :broken_on_windows do
|
87
87
|
include_examples "block_macro", :bytefield, code, [:svg]
|
88
88
|
end
|
89
89
|
|
90
|
-
describe Asciidoctor::Diagram::BytefieldBlockProcessor, :
|
90
|
+
describe Asciidoctor::Diagram::BytefieldBlockProcessor, :broken_on_windows do
|
91
91
|
include_examples "block", :bytefield, code, [:svg]
|
92
|
-
end
|
92
|
+
end
|
data/spec/ditaa_spec.rb
CHANGED
data/spec/dpic_spec.rb
CHANGED
@@ -10,10 +10,10 @@ G: box "$G(s)$"
|
|
10
10
|
"$-\;$" below rjust
|
11
11
|
eos
|
12
12
|
|
13
|
-
describe Asciidoctor::Diagram::DpicBlockMacroProcessor, :
|
13
|
+
describe Asciidoctor::Diagram::DpicBlockMacroProcessor, :broken_on_windows do
|
14
14
|
include_examples "block_macro", :dpic, code, [:svg]
|
15
15
|
end
|
16
16
|
|
17
|
-
describe Asciidoctor::Diagram::DpicBlockProcessor, :
|
17
|
+
describe Asciidoctor::Diagram::DpicBlockProcessor, :broken_on_windows do
|
18
18
|
include_examples "block", :dpic, code, [:svg]
|
19
|
-
end
|
19
|
+
end
|
data/spec/erd_spec.rb
CHANGED
@@ -83,10 +83,10 @@ play 1--* play_player
|
|
83
83
|
player 1--* play_player
|
84
84
|
eos
|
85
85
|
|
86
|
-
describe Asciidoctor::Diagram::ErdBlockMacroProcessor, :
|
87
|
-
include_examples "block_macro", :erd, code, [:svg]
|
86
|
+
describe Asciidoctor::Diagram::ErdBlockMacroProcessor, :broken_on_windows do
|
87
|
+
include_examples "block_macro", :erd, code, [:png, :svg]
|
88
88
|
end
|
89
89
|
|
90
|
-
describe Asciidoctor::Diagram::ErdBlockProcessor, :
|
91
|
-
include_examples "block", :erd, code, [:svg]
|
92
|
-
end
|
90
|
+
describe Asciidoctor::Diagram::ErdBlockProcessor, :broken_on_windows do
|
91
|
+
include_examples "block", :erd, code, [:png, :svg]
|
92
|
+
end
|
data/spec/lilypond_spec.rb
CHANGED
@@ -4,10 +4,10 @@ code = <<-eos
|
|
4
4
|
\\relative c' { f d f a d f e d cis a cis e a g f e }
|
5
5
|
eos
|
6
6
|
|
7
|
-
describe Asciidoctor::Diagram::LilypondBlockMacroProcessor
|
7
|
+
describe Asciidoctor::Diagram::LilypondBlockMacroProcessor do
|
8
8
|
include_examples "block_macro", :lilypond, code, [:png]
|
9
9
|
end
|
10
10
|
|
11
|
-
describe Asciidoctor::Diagram::LilypondBlockProcessor
|
11
|
+
describe Asciidoctor::Diagram::LilypondBlockProcessor do
|
12
12
|
include_examples "block", :lilypond, code, [:png]
|
13
|
-
end
|
13
|
+
end
|
data/spec/mermaid_spec.rb
CHANGED
@@ -137,6 +137,43 @@ end
|
|
137
137
|
describe Asciidoctor::Diagram::MermaidBlockProcessor do
|
138
138
|
include_examples "block", :mermaid, code, [:png, :svg]
|
139
139
|
|
140
|
+
it "should work with kroki.io" do
|
141
|
+
doc = <<-eos
|
142
|
+
= Hello, kroki!
|
143
|
+
:diagram-server-url: https://kroki.io/
|
144
|
+
:diagram-server-type: kroki_io
|
145
|
+
Doc Writer <doc@example.com>
|
146
|
+
|
147
|
+
== First Section
|
148
|
+
|
149
|
+
[mermaid, format=svg]
|
150
|
+
----
|
151
|
+
graph TD
|
152
|
+
A[ Anyone ] -->|Can help | B( Go to github.com/yuzutech/kroki )
|
153
|
+
B --> C{ How to contribute? }
|
154
|
+
C --> D[ Reporting bugs ]
|
155
|
+
C --> E[ Sharing ideas ]
|
156
|
+
C --> F[ Advocating ]
|
157
|
+
----
|
158
|
+
eos
|
159
|
+
|
160
|
+
d = load_asciidoc doc
|
161
|
+
expect(d).to_not be_nil
|
162
|
+
|
163
|
+
b = d.find { |bl| bl.context == :image }
|
164
|
+
expect(b).to_not be_nil
|
165
|
+
|
166
|
+
expect(b.content_model).to eq :empty
|
167
|
+
|
168
|
+
target = b.attributes['target']
|
169
|
+
expect(target).to_not be_nil
|
170
|
+
expect(target).to match(/\.svg$/)
|
171
|
+
expect(File.exist?(target)).to be true
|
172
|
+
|
173
|
+
expect(b.attributes['width']).to_not be_nil
|
174
|
+
expect(b.attributes['height']).to_not be_nil
|
175
|
+
end
|
176
|
+
|
140
177
|
it "should report unsupported scaling factors" do
|
141
178
|
doc = <<-eos
|
142
179
|
= Hello, Mermaid!
|
data/spec/pikchr_spec.rb
CHANGED
@@ -42,10 +42,28 @@ arrow dashed from last circle.w to 5/8<last circle.w,2nd last box> chop
|
|
42
42
|
box invis wid 2*boxwid "ndtable:" with .e at Start.w
|
43
43
|
eos
|
44
44
|
|
45
|
-
describe Asciidoctor::Diagram::PikchrBlockMacroProcessor, :
|
45
|
+
describe Asciidoctor::Diagram::PikchrBlockMacroProcessor, :broken_on_windows do
|
46
46
|
include_examples "block_macro", :pikchr, code, [:svg]
|
47
47
|
end
|
48
48
|
|
49
|
-
describe Asciidoctor::Diagram::
|
49
|
+
describe Asciidoctor::Diagram::PikchrBlockProcessor, :broken_on_windows do
|
50
50
|
include_examples "block", :pikchr, code, [:svg]
|
51
|
-
|
51
|
+
|
52
|
+
it "should report syntax errors" do
|
53
|
+
doc = <<-eos
|
54
|
+
= Hello, Pikchr!
|
55
|
+
Doc Writer <doc@example.com>
|
56
|
+
|
57
|
+
== First Section
|
58
|
+
|
59
|
+
[pikchr]
|
60
|
+
----
|
61
|
+
This should raise a syntax error.
|
62
|
+
----
|
63
|
+
eos
|
64
|
+
|
65
|
+
expect {
|
66
|
+
load_asciidoc doc
|
67
|
+
}.to raise_error(/error/i)
|
68
|
+
end
|
69
|
+
end
|
data/spec/shaape_spec.rb
CHANGED
@@ -7,10 +7,10 @@ code = <<-eos
|
|
7
7
|
\/
|
8
8
|
eos
|
9
9
|
|
10
|
-
describe Asciidoctor::Diagram::ShaapeBlockMacroProcessor, :broken_on_osx, :
|
10
|
+
describe Asciidoctor::Diagram::ShaapeBlockMacroProcessor, :broken_on_osx, :broken_on_github, :broken_on_windows do
|
11
11
|
include_examples "block_macro", :shaape, code, [:png, :svg]
|
12
12
|
end
|
13
13
|
|
14
|
-
describe Asciidoctor::Diagram::ShaapeBlockProcessor, :broken_on_osx, :
|
14
|
+
describe Asciidoctor::Diagram::ShaapeBlockProcessor, :broken_on_osx, :broken_on_github, :broken_on_windows do
|
15
15
|
include_examples "block", :shaape, code, [:png, :svg]
|
16
|
-
end
|
16
|
+
end
|
data/spec/svgbob_spec.rb
CHANGED
@@ -20,10 +20,10 @@ code = <<-eos
|
|
20
20
|
'---------------------------------------'
|
21
21
|
eos
|
22
22
|
|
23
|
-
describe Asciidoctor::Diagram::SvgBobBlockMacroProcessor
|
23
|
+
describe Asciidoctor::Diagram::SvgBobBlockMacroProcessor do
|
24
24
|
include_examples "block_macro", :svgbob, code, [:svg]
|
25
25
|
end
|
26
26
|
|
27
|
-
describe Asciidoctor::Diagram::SvgBobBlockProcessor
|
27
|
+
describe Asciidoctor::Diagram::SvgBobBlockProcessor do
|
28
28
|
include_examples "block", :svgbob, code, [:svg]
|
29
|
-
end
|
29
|
+
end
|
data/spec/syntrax_spec.rb
CHANGED
@@ -9,10 +9,10 @@ indentstack(10,
|
|
9
9
|
)
|
10
10
|
eos
|
11
11
|
|
12
|
-
describe Asciidoctor::Diagram::SyntraxBlockMacroProcessor, :
|
12
|
+
describe Asciidoctor::Diagram::SyntraxBlockMacroProcessor, :broken_on_windows do
|
13
13
|
include_examples "block_macro", :syntrax, code, [:png, :svg]
|
14
14
|
end
|
15
15
|
|
16
|
-
describe Asciidoctor::Diagram::SyntraxBlockProcessor, :
|
16
|
+
describe Asciidoctor::Diagram::SyntraxBlockProcessor, :broken_on_windows do
|
17
17
|
include_examples "block", :syntrax, code, [:png, :svg]
|
18
|
-
end
|
18
|
+
end
|
data/spec/test_helper.rb
CHANGED
@@ -85,12 +85,8 @@ RSpec.configure do |c|
|
|
85
85
|
c.filter_run_excluding :broken_on_windows => true
|
86
86
|
end
|
87
87
|
|
88
|
-
if ENV['
|
89
|
-
c.filter_run_excluding :
|
90
|
-
end
|
91
|
-
|
92
|
-
if ENV['APPVEYOR']
|
93
|
-
c.filter_run_excluding :broken_on_appveyor => true
|
88
|
+
if ENV['GITHUB_ACTIONS']
|
89
|
+
c.filter_run_excluding :broken_on_github => true
|
94
90
|
end
|
95
91
|
|
96
92
|
TEST_DIR = File.expand_path('testing')
|
@@ -112,4 +108,4 @@ RSpec.configure do |c|
|
|
112
108
|
example.run
|
113
109
|
end
|
114
110
|
end
|
115
|
-
end
|
111
|
+
end
|
data/spec/tikz_spec.rb
CHANGED
@@ -98,11 +98,11 @@ code = <<-'eos'
|
|
98
98
|
\end{tikzpicture}
|
99
99
|
eos
|
100
100
|
|
101
|
-
describe Asciidoctor::Diagram::TikZBlockMacroProcessor, :
|
101
|
+
describe Asciidoctor::Diagram::TikZBlockMacroProcessor, :broken_on_windows do
|
102
102
|
include_examples "block_macro", :tikz, code, [:pdf]
|
103
103
|
end
|
104
104
|
|
105
|
-
describe Asciidoctor::Diagram::TikZBlockProcessor, :
|
105
|
+
describe Asciidoctor::Diagram::TikZBlockProcessor, :broken_on_windows do
|
106
106
|
include_examples "block", :tikz, code, [:pdf]
|
107
107
|
|
108
108
|
it "should support the preamble attribute" do
|
@@ -174,4 +174,4 @@ eos
|
|
174
174
|
target = b.attributes['target']
|
175
175
|
expect(target).to_not be_nil
|
176
176
|
end
|
177
|
-
end
|
177
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asciidoctor-diagram
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pepijn Van Eeckhoudt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -72,6 +72,48 @@ dependencies:
|
|
72
72
|
- - "<"
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: 3.x
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: asciidoctor-diagram-ditaamini
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0.13'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0.13'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: asciidoctor-diagram-plantuml
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '1.2021'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '1.2021'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: rexml
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
75
117
|
description: Asciidoctor diagramming extension
|
76
118
|
email:
|
77
119
|
- pepijn@vaneeckhoudt.net
|
@@ -82,14 +124,20 @@ files:
|
|
82
124
|
- CHANGELOG.adoc
|
83
125
|
- LICENSE.txt
|
84
126
|
- README.adoc
|
85
|
-
- README_zh-CN.adoc
|
86
127
|
- Rakefile
|
128
|
+
- docs/antora.yml
|
129
|
+
- docs/modules/ROOT/images/asciidoctor-diagram-classes.png
|
130
|
+
- docs/modules/ROOT/images/asciidoctor-diagram-process.png
|
131
|
+
- docs/modules/ROOT/pages/index.adoc
|
132
|
+
- docs/modules/ROOT/partials/advanced.adoc
|
133
|
+
- docs/modules/ROOT/partials/create_diagram.adoc
|
134
|
+
- docs/modules/ROOT/partials/generate.adoc
|
135
|
+
- docs/modules/ROOT/partials/installation.adoc
|
136
|
+
- docs/modules/ROOT/partials/uris.adoc
|
87
137
|
- examples/Gemfile
|
88
138
|
- examples/README.adoc
|
89
139
|
- examples/design.adoc
|
90
140
|
- examples/features.adoc
|
91
|
-
- images/asciidoctor-diagram-classes.png
|
92
|
-
- images/asciidoctor-diagram-process.png
|
93
141
|
- lib/asciidoctor-diagram.rb
|
94
142
|
- lib/asciidoctor-diagram/a2s.rb
|
95
143
|
- lib/asciidoctor-diagram/a2s/converter.rb
|
@@ -108,6 +156,7 @@ files:
|
|
108
156
|
- lib/asciidoctor-diagram/diagram_source.rb
|
109
157
|
- lib/asciidoctor-diagram/ditaa.rb
|
110
158
|
- lib/asciidoctor-diagram/ditaa/converter.rb
|
159
|
+
- lib/asciidoctor-diagram/ditaa/ditaa-1.3.17.jar
|
111
160
|
- lib/asciidoctor-diagram/ditaa/extension.rb
|
112
161
|
- lib/asciidoctor-diagram/dpic.rb
|
113
162
|
- lib/asciidoctor-diagram/dpic/converter.rb
|
@@ -144,6 +193,7 @@ files:
|
|
144
193
|
- lib/asciidoctor-diagram/plantuml.rb
|
145
194
|
- lib/asciidoctor-diagram/plantuml/converter.rb
|
146
195
|
- lib/asciidoctor-diagram/plantuml/extension.rb
|
196
|
+
- lib/asciidoctor-diagram/plantuml/plantuml-1.3.17.jar
|
147
197
|
- lib/asciidoctor-diagram/salt.rb
|
148
198
|
- lib/asciidoctor-diagram/shaape.rb
|
149
199
|
- lib/asciidoctor-diagram/shaape/converter.rb
|
@@ -176,6 +226,7 @@ files:
|
|
176
226
|
- lib/asciidoctor-diagram/util/pdf.rb
|
177
227
|
- lib/asciidoctor-diagram/util/platform.rb
|
178
228
|
- lib/asciidoctor-diagram/util/png.rb
|
229
|
+
- lib/asciidoctor-diagram/util/server-1.3.17.jar
|
179
230
|
- lib/asciidoctor-diagram/util/svg.rb
|
180
231
|
- lib/asciidoctor-diagram/util/which.rb
|
181
232
|
- lib/asciidoctor-diagram/vega.rb
|
@@ -185,13 +236,6 @@ files:
|
|
185
236
|
- lib/asciidoctor-diagram/wavedrom.rb
|
186
237
|
- lib/asciidoctor-diagram/wavedrom/converter.rb
|
187
238
|
- lib/asciidoctor-diagram/wavedrom/extension.rb
|
188
|
-
- lib/batik-all-1.10.jar
|
189
|
-
- lib/ditaa-1.3.15.jar
|
190
|
-
- lib/ditaamini-0.12.jar
|
191
|
-
- lib/jlatexmath-minimal-1.0.5.jar
|
192
|
-
- lib/plantuml-1.3.15.jar
|
193
|
-
- lib/plantuml.jar
|
194
|
-
- lib/server-1.3.15.jar
|
195
239
|
- spec/a2s_spec.rb
|
196
240
|
- spec/blockdiag_spec.rb
|
197
241
|
- spec/bpmn_spec.rb
|
@@ -239,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
283
|
- !ruby/object:Gem::Version
|
240
284
|
version: '0'
|
241
285
|
requirements: []
|
242
|
-
rubygems_version: 3.1.
|
286
|
+
rubygems_version: 3.1.2
|
243
287
|
signing_key:
|
244
288
|
specification_version: 4
|
245
289
|
summary: An extension for asciidoctor that adds support for UML diagram generation
|