jekyll-plantuml 1.4.0 → 1.4.2
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 +4 -4
- data/.github/workflows/codecov.yml +22 -0
- data/.github/workflows/pdd.yml +7 -3
- data/.github/workflows/rake.yml +3 -2
- data/.github/workflows/xcop.yml +2 -2
- data/.gitignore +1 -0
- data/.rubocop.yml +6 -0
- data/.rultor.yml +4 -2
- data/Gemfile +5 -3
- data/LICENSE.txt +1 -1
- data/README.md +31 -7
- data/Rakefile +16 -2
- data/lib/{jekyll_plantuml.rb → jekyll-plantuml.rb} +28 -30
- data/lib/version.rb +2 -2
- data/renovate.json +4 -0
- data/test/test__helper.rb +26 -0
- data/test/test_plantuml.rb +49 -0
- data/test-jekylls/.gitignore +2 -0
- data/test-jekylls/Makefile +13 -0
- data/test-jekylls/jekyll-3/Gemfile +9 -0
- data/test-jekylls/jekyll-3/_config.yml +6 -0
- data/test-jekylls/jekyll-3/_layouts/default.html +9 -0
- data/test-jekylls/jekyll-3/_posts/2023/06/2023-06-02-test.md +11 -0
- data/test-jekylls/jekyll-4/Gemfile +8 -0
- data/test-jekylls/jekyll-4/_config.yml +6 -0
- data/test-jekylls/jekyll-4/_layouts/default.html +9 -0
- data/test-jekylls/jekyll-4/_posts/2023/06/2023-06-02-test.md +17 -0
- metadata +17 -5
- data/.travis.yml +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51daf562588034598bf5b90637effc7597bfc2dba215ccaad8e0c9f9aa2dd285
|
4
|
+
data.tar.gz: 72a2fa53f9024c0dfc1a8170d0bf8cb8d3f0b556d67e35623a01ae2204d24112
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68f2e0c80212045b46d6e975e72ab6c17340084f60f952ed20f296e7c54b2f625e994016f70ddfabfe3c7f083f8d0d3858ac7036ea3c9fdfe0470cc200cc9141
|
7
|
+
data.tar.gz: 26a44da82ea8780bccdd2f1134423ffd6fc7c2b75b1968c668f755d4b35f5ea16801ee6760975388c0342376bdeaee66fcca72fc5bf75881acf6fab4aedd185f
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
name: codecov
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
jobs:
|
8
|
+
codecov:
|
9
|
+
runs-on: ubuntu-22.04
|
10
|
+
steps:
|
11
|
+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
12
|
+
- uses: ruby/setup-ruby@v1
|
13
|
+
with:
|
14
|
+
ruby-version: 2.7
|
15
|
+
- run: sudo apt-get -y install plantuml
|
16
|
+
- run: bundle update
|
17
|
+
- run: bundle exec rake
|
18
|
+
- uses: codecov/codecov-action@v4.0.0-beta.3
|
19
|
+
with:
|
20
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
21
|
+
file: coverage/.resultset.json
|
22
|
+
fail_ci_if_error: true
|
data/.github/workflows/pdd.yml
CHANGED
@@ -2,10 +2,14 @@
|
|
2
2
|
name: pdd
|
3
3
|
on:
|
4
4
|
push:
|
5
|
+
branches:
|
6
|
+
- master
|
5
7
|
pull_request:
|
8
|
+
branches:
|
9
|
+
- master
|
6
10
|
jobs:
|
7
11
|
pdd:
|
8
|
-
runs-on: ubuntu-
|
12
|
+
runs-on: ubuntu-22.04
|
9
13
|
steps:
|
10
|
-
- uses: actions/checkout@
|
11
|
-
- uses:
|
14
|
+
- uses: actions/checkout@v4
|
15
|
+
- uses: volodya-lombrozo/pdd-action@master
|
data/.github/workflows/rake.yml
CHANGED
@@ -12,13 +12,14 @@ jobs:
|
|
12
12
|
name: test
|
13
13
|
strategy:
|
14
14
|
matrix:
|
15
|
-
os: [ubuntu-20.04
|
15
|
+
os: [ubuntu-20.04]
|
16
16
|
ruby: [2.7, 3.2]
|
17
17
|
runs-on: ${{ matrix.os }}
|
18
18
|
steps:
|
19
|
-
- uses: actions/checkout@
|
19
|
+
- uses: actions/checkout@v4
|
20
20
|
- uses: ruby/setup-ruby@v1
|
21
21
|
with:
|
22
22
|
ruby-version: ${{ matrix.ruby }}
|
23
|
+
- run: sudo apt-get -y install plantuml
|
23
24
|
- run: bundle update
|
24
25
|
- run: bundle exec rake
|
data/.github/workflows/xcop.yml
CHANGED
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/.rultor.yml
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
docker:
|
2
|
-
image: yegor256/rultor-image:1.
|
2
|
+
image: yegor256/rultor-image:1.22.0
|
3
3
|
assets:
|
4
4
|
rubygems.yml: yegor256/home#assets/rubygems.yml
|
5
5
|
install: |
|
6
6
|
pdd -f /dev/null
|
7
|
-
|
7
|
+
bundle install --no-color
|
8
|
+
sudo apt-get -y install plantuml
|
8
9
|
release:
|
10
|
+
pre: false
|
9
11
|
script: |-
|
10
12
|
bundle exec rake
|
11
13
|
rm -rf *.gem
|
data/Gemfile
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
source 'https://rubygems.org'
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
gem '
|
7
|
-
gem '
|
8
|
-
gem 'rubocop
|
6
|
+
gem 'minitest', '5.22.0', require: false
|
7
|
+
gem 'rake', '13.1.0', require: false
|
8
|
+
gem 'rubocop', '1.60.2', require: false
|
9
|
+
gem 'rubocop-rspec', '2.26.1', require: false
|
10
|
+
gem 'simplecov', '0.22.0', require: false
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
+
[](http://www.rultor.com/p/yegor256/jekyll-plantuml)
|
2
|
+
[](https://www.jetbrains.com/ruby/)
|
3
|
+
|
1
4
|
[](https://github.com/yegor256/jekyll-plantuml/actions/workflows/rake.yml)
|
2
5
|
[](http://badge.fury.io/rb/jekyll-plantuml)
|
6
|
+
[](https://codecov.io/github/yegor256/jekyll-plantuml?branch=master)
|
3
7
|
|
4
8
|
Install it first:
|
5
9
|
|
6
10
|
```
|
7
|
-
gem install jekyll-plantuml
|
11
|
+
$ gem install jekyll-plantuml
|
8
12
|
```
|
9
13
|
|
10
14
|
With Jekyll 2, simply add the gem to your `_config.yml` gems list:
|
@@ -18,7 +22,7 @@ create a plugin file within your Jekyll project's `_plugins` directory:
|
|
18
22
|
|
19
23
|
```ruby
|
20
24
|
# _plugins/plantuml-plugin.rb
|
21
|
-
require "
|
25
|
+
require "jekyll-plantuml"
|
22
26
|
```
|
23
27
|
|
24
28
|
Highly recommend to use Bundler. If you're using it, add this line
|
@@ -28,26 +32,33 @@ to your `Gemfile`:
|
|
28
32
|
gem "jekyll-plantuml"
|
29
33
|
```
|
30
34
|
|
35
|
+
The plugin is compatible with
|
36
|
+
[Jekyll 3.9.3](https://jekyllrb.com/news/2023/01/29/jekyll-3-9-3-released/) and
|
37
|
+
[Jekyll 4.3.2](https://jekyllrb.com/news/2023/01/20/jekyll-4-3-2-released/).
|
38
|
+
You can find our integration tests, which prove the compatibility,
|
39
|
+
[here](https://github.com/yegor256/jekyll-plantuml/tree/master/test-jekylls).
|
40
|
+
|
31
41
|
## Install plantuml.jar
|
32
42
|
|
33
43
|
Then, make sure [PlantUML](http://plantuml.sourceforge.net/download.html)
|
34
44
|
is installed on your build machine, and can
|
35
45
|
be executed with a simple `plantuml` command.
|
36
46
|
|
37
|
-
|
47
|
+
On Ubuntu, just `apt-get install -y plantuml` should work.
|
48
|
+
However, if it doesn't, you can create a `/usr/bin/plantuml` with the
|
49
|
+
following content:
|
38
50
|
|
39
51
|
```
|
40
52
|
#!/bin/bash
|
41
|
-
|
42
53
|
java -jar /home/user/Downloads/plantuml.jar "$1" "$2"
|
43
54
|
```
|
44
55
|
|
45
|
-
Remember to change the path to `plantuml.jar` file.
|
56
|
+
Remember to change the path to the `plantuml.jar` file.
|
46
57
|
|
47
|
-
Then set executable permission
|
58
|
+
Then, set the executable permission of the file:
|
48
59
|
|
49
60
|
```
|
50
|
-
chmod +x /usr/bin/plantuml
|
61
|
+
$ chmod +x /usr/bin/plantuml
|
51
62
|
```
|
52
63
|
|
53
64
|
## Test
|
@@ -64,3 +75,16 @@ Now, check [this blog post](http://www.yegor256.com/2014/06/01/aop-aspectj-java-
|
|
64
75
|
the UML sequence diagram in it is auto-generated using exactly this plugin.
|
65
76
|
The sources of the blog are available in [GitHub](https://github.com/yegor256/blog).
|
66
77
|
|
78
|
+
## How to contribute
|
79
|
+
|
80
|
+
Read [these guidelines](https://www.yegor256.com/2014/04/15/github-guidelines.html).
|
81
|
+
Make sure you build is green before you contribute
|
82
|
+
your pull request. You will need to have [Ruby](https://www.ruby-lang.org/en/) 2.3+ and
|
83
|
+
[Bundler](https://bundler.io/) installed. Then:
|
84
|
+
|
85
|
+
```
|
86
|
+
$ bundle update
|
87
|
+
$ bundle exec rake
|
88
|
+
```
|
89
|
+
|
90
|
+
If it's clean and you don't see any error messages, submit your pull request.
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# (The MIT License)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2014-
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -35,7 +35,21 @@ def version
|
|
35
35
|
Gem::Specification.load(Dir['*.gemspec'].first).version
|
36
36
|
end
|
37
37
|
|
38
|
-
task default: %i[clean rubocop copyright]
|
38
|
+
task default: %i[clean test jekylls rubocop copyright]
|
39
|
+
|
40
|
+
require 'rake/testtask'
|
41
|
+
desc 'Run all unit tests'
|
42
|
+
Rake::TestTask.new(:test) do |test|
|
43
|
+
Rake::Cleaner.cleanup_files(['coverage'])
|
44
|
+
test.libs << 'lib' << 'test'
|
45
|
+
test.pattern = 'test/**/test_*.rb'
|
46
|
+
test.warning = true
|
47
|
+
test.verbose = false
|
48
|
+
end
|
49
|
+
|
50
|
+
task :jekylls do
|
51
|
+
sh 'cd test-jekylls; make'
|
52
|
+
end
|
39
53
|
|
40
54
|
require 'rdoc/task'
|
41
55
|
desc 'Build RDoc documentation'
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# (The MIT License)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2014-
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -22,45 +22,43 @@
|
|
22
22
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
23
|
# SOFTWARE.
|
24
24
|
|
25
|
+
require 'jekyll'
|
26
|
+
require 'liquid'
|
25
27
|
require 'digest'
|
26
28
|
require 'fileutils'
|
27
29
|
|
28
30
|
# Jekyll main module.
|
29
31
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
30
|
-
# Copyright:: Copyright (c) 2014-
|
32
|
+
# Copyright:: Copyright (c) 2014-2024 Yegor Bugayenko
|
31
33
|
# License:: MIT
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
@html = (markup or '').strip
|
38
|
-
end
|
34
|
+
class Jekyll::PlantumlBlock < Liquid::Block
|
35
|
+
def initialize(tag_name, markup, tokens)
|
36
|
+
super
|
37
|
+
@html = (markup or '').strip
|
38
|
+
end
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
end
|
55
|
-
system("plantuml -tsvg #{uml}") or raise "PlantUML error: #{super}"
|
56
|
-
site.static_files << Jekyll::StaticFile.new(
|
57
|
-
site, site.source, 'uml', "#{name}.svg"
|
58
|
-
)
|
59
|
-
puts "File #{svg} created (#{File.size(svg)} bytes)"
|
40
|
+
def render(context)
|
41
|
+
site = context.registers[:site]
|
42
|
+
body = super.to_s
|
43
|
+
name = Digest::MD5.hexdigest(body)
|
44
|
+
unless File.exist?(File.join(site.dest, "uml/#{name}.svg"))
|
45
|
+
uml = File.join(site.source, "uml/#{name}.uml")
|
46
|
+
svg = File.join(site.source, "uml/#{name}.svg")
|
47
|
+
if File.exist?(svg)
|
48
|
+
puts "File #{svg} already exists (#{File.size(svg)} bytes)"
|
49
|
+
else
|
50
|
+
FileUtils.mkdir_p(File.dirname(uml))
|
51
|
+
File.write(uml, ["@startuml\n", body, "\n@enduml"].join)
|
52
|
+
unless system("plantuml -tsvg #{uml} 2>&1")
|
53
|
+
raise "PlantUML failed to compile the following snippet (see logs above):\n#{body}\n"
|
60
54
|
end
|
55
|
+
site.static_files << Jekyll::StaticFile.new(
|
56
|
+
site, site.source, 'uml', "#{name}.svg"
|
57
|
+
)
|
58
|
+
puts "\nFile #{svg} created (#{File.size(svg)} bytes)"
|
61
59
|
end
|
62
|
-
"<p><object data='#{site.baseurl}/uml/#{name}.svg' type='image/svg+xml' #{@html} class='plantuml'></object></p>"
|
63
60
|
end
|
61
|
+
"<p><object data='#{site.baseurl}/uml/#{name}.svg' type='image/svg+xml' #{@html} class='plantuml'></object></p>"
|
64
62
|
end
|
65
63
|
end
|
66
64
|
|
data/lib/version.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# (The MIT License)
|
4
4
|
#
|
5
|
-
# Copyright (c) 2014-
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -23,5 +23,5 @@
|
|
23
23
|
# SOFTWARE.
|
24
24
|
|
25
25
|
module PlantUML
|
26
|
-
VERSION = '1.4.
|
26
|
+
VERSION = '1.4.2'
|
27
27
|
end
|
data/renovate.json
CHANGED
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
13
|
+
# copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
22
|
+
|
23
|
+
$stdout.sync = true
|
24
|
+
|
25
|
+
require 'simplecov'
|
26
|
+
SimpleCov.start
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# (The MIT License)
|
4
|
+
#
|
5
|
+
# Copyright (c) 2014-2024 Yegor Bugayenko
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
15
|
+
# copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
# SOFTWARE.
|
24
|
+
|
25
|
+
require 'liquid'
|
26
|
+
require 'tmpdir'
|
27
|
+
require 'minitest/autorun'
|
28
|
+
require_relative 'test__helper'
|
29
|
+
require_relative '../lib/jekyll-plantuml'
|
30
|
+
|
31
|
+
# PlantumlBlock test.
|
32
|
+
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
33
|
+
# Copyright:: Copyright (c) 2023-2024 Yegor Bugayenko
|
34
|
+
# License:: MIT
|
35
|
+
class PlantumlBlockTest < Minitest::Test
|
36
|
+
def test_failure
|
37
|
+
Dir.mktmpdir 'test' do |dir|
|
38
|
+
template = Liquid::Template.parse('{% plantuml %}[A] -> [B]{% endplantuml %}')
|
39
|
+
config = {
|
40
|
+
'destination' => File.join(dir, 'dest'),
|
41
|
+
'source' => File.join(dir, 'source')
|
42
|
+
}
|
43
|
+
context = Liquid::Context.new({}, {}, { site: Jekyll::Site.new(Jekyll.configuration(config)) })
|
44
|
+
block = template.root.nodelist.first
|
45
|
+
output = block.render(context)
|
46
|
+
assert(output.start_with?('<p><object'))
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-plantuml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -33,6 +33,7 @@ extra_rdoc_files:
|
|
33
33
|
- LICENSE.txt
|
34
34
|
files:
|
35
35
|
- ".0pdd.yml"
|
36
|
+
- ".github/workflows/codecov.yml"
|
36
37
|
- ".github/workflows/pdd.yml"
|
37
38
|
- ".github/workflows/rake.yml"
|
38
39
|
- ".github/workflows/xcop.yml"
|
@@ -40,15 +41,26 @@ files:
|
|
40
41
|
- ".pdd"
|
41
42
|
- ".rubocop.yml"
|
42
43
|
- ".rultor.yml"
|
43
|
-
- ".travis.yml"
|
44
44
|
- Gemfile
|
45
45
|
- LICENSE.txt
|
46
46
|
- README.md
|
47
47
|
- Rakefile
|
48
48
|
- jekyll-plantuml.gemspec
|
49
|
-
- lib/
|
49
|
+
- lib/jekyll-plantuml.rb
|
50
50
|
- lib/version.rb
|
51
51
|
- renovate.json
|
52
|
+
- test-jekylls/.gitignore
|
53
|
+
- test-jekylls/Makefile
|
54
|
+
- test-jekylls/jekyll-3/Gemfile
|
55
|
+
- test-jekylls/jekyll-3/_config.yml
|
56
|
+
- test-jekylls/jekyll-3/_layouts/default.html
|
57
|
+
- test-jekylls/jekyll-3/_posts/2023/06/2023-06-02-test.md
|
58
|
+
- test-jekylls/jekyll-4/Gemfile
|
59
|
+
- test-jekylls/jekyll-4/_config.yml
|
60
|
+
- test-jekylls/jekyll-4/_layouts/default.html
|
61
|
+
- test-jekylls/jekyll-4/_posts/2023/06/2023-06-02-test.md
|
62
|
+
- test/test__helper.rb
|
63
|
+
- test/test_plantuml.rb
|
52
64
|
homepage: https://github.com/yegor256/jekyll-plantuml
|
53
65
|
licenses:
|
54
66
|
- MIT
|
@@ -70,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
82
|
- !ruby/object:Gem::Version
|
71
83
|
version: '0'
|
72
84
|
requirements: []
|
73
|
-
rubygems_version: 3.
|
85
|
+
rubygems_version: 3.4.10
|
74
86
|
signing_key:
|
75
87
|
specification_version: 4
|
76
88
|
summary: Jekyll PlantUML Automation
|