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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2697b42a31945ffb30c6daaffbd25fad42fac637ded85a28d880a901498eae00
4
- data.tar.gz: f707a12ea2d90e5b128afc2b98f9d482fcf44041cfc4d0b1671d3a63e71d5ddb
3
+ metadata.gz: 51daf562588034598bf5b90637effc7597bfc2dba215ccaad8e0c9f9aa2dd285
4
+ data.tar.gz: 72a2fa53f9024c0dfc1a8170d0bf8cb8d3f0b556d67e35623a01ae2204d24112
5
5
  SHA512:
6
- metadata.gz: 251252e096489b6522e3d2b0d1a6d72eaacae391dbb4a25191a387ae309ff9a462d19b718bcc6c9c58edd336e65882f992d47b78302ffd93b34f33b39b3b7792
7
- data.tar.gz: fa076635bda7053181e182622159ec0274878f41d7c562caec73512f7e46afc0e854da25ca142efc862bbe4df991db475af4ab9198ba0eb30e8d30e29c177b65
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
@@ -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-20.04
12
+ runs-on: ubuntu-22.04
9
13
  steps:
10
- - uses: actions/checkout@v3
11
- - uses: g4s8/pdd-action@master
14
+ - uses: actions/checkout@v4
15
+ - uses: volodya-lombrozo/pdd-action@master
@@ -12,13 +12,14 @@ jobs:
12
12
  name: test
13
13
  strategy:
14
14
  matrix:
15
- os: [ubuntu-20.04, macos-12]
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@v3
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
@@ -5,7 +5,7 @@ on:
5
5
  pull_request:
6
6
  jobs:
7
7
  xcop:
8
- runs-on: ubuntu-20.04
8
+ runs-on: ubuntu-22.04
9
9
  steps:
10
- - uses: actions/checkout@v3
10
+ - uses: actions/checkout@v4
11
11
  - uses: g4s8/xcop-action@master
data/.gitignore CHANGED
@@ -2,3 +2,4 @@ Gemfile.lock
2
2
  *.gem
3
3
  .bundle/
4
4
  .DS_Store
5
+ coverage/
data/.rubocop.yml CHANGED
@@ -13,3 +13,9 @@ Metrics/MethodLength:
13
13
  Enabled: false
14
14
  Metrics/AbcSize:
15
15
  Max: 30
16
+ Naming/FileName:
17
+ Enabled: false
18
+ Style/ClassAndModuleChildren:
19
+ Enabled: false
20
+ Layout/EmptyLineAfterGuardClause:
21
+ Enabled: false
data/.rultor.yml CHANGED
@@ -1,11 +1,13 @@
1
1
  docker:
2
- image: yegor256/rultor-image:1.20.0
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
- sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
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 'rake', '13.0.6', require: false
7
- gem 'rubocop', '1.51.0', require: false
8
- gem 'rubocop-rspec', '2.22.0', require: false
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
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2014-2023 Yegor Bugayenko
3
+ Copyright (c) 2014-2024 Yegor Bugayenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the 'Software'), to deal
data/README.md CHANGED
@@ -1,10 +1,14 @@
1
+ [![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/jekyll-plantuml)](http://www.rultor.com/p/yegor256/jekyll-plantuml)
2
+ [![We recommend RubyMine](https://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
3
+
1
4
  [![rake](https://github.com/yegor256/jekyll-plantuml/actions/workflows/rake.yml/badge.svg)](https://github.com/yegor256/jekyll-plantuml/actions/workflows/rake.yml)
2
5
  [![Gem Version](https://badge.fury.io/rb/jekyll-plantuml.svg)](http://badge.fury.io/rb/jekyll-plantuml)
6
+ [![Test Coverage](https://img.shields.io/codecov/c/github/yegor256/jekyll-plantuml.svg)](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 "jekyll_plantuml"
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
- For Linux user, you could create a `/usr/bin/plantuml` with contents:
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-2023 Yegor Bugayenko
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-2023 Yegor Bugayenko
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-2023 Yegor Bugayenko
32
+ # Copyright:: Copyright (c) 2014-2024 Yegor Bugayenko
31
33
  # License:: MIT
32
- module Jekyll
33
- # The main class
34
- class PlantumlBlock < Liquid::Block
35
- def initialize(tag_name, markup, tokens)
36
- super
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
- def render(context)
41
- site = context.registers[:site]
42
- name = Digest::MD5.hexdigest(super)
43
- unless File.exist?(File.join(site.dest, "uml/#{name}.svg"))
44
- uml = File.join(site.source, "uml/#{name}.uml")
45
- svg = File.join(site.source, "uml/#{name}.svg")
46
- if File.exist?(svg)
47
- puts "File #{svg} already exists (#{File.size(svg)} bytes)"
48
- else
49
- FileUtils.mkdir_p(File.dirname(uml))
50
- File.open(uml, 'w') do |f|
51
- f.write("@startuml\n")
52
- f.write(super)
53
- f.write("\n@enduml")
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-2023 Yegor Bugayenko
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.0'
26
+ VERSION = '1.4.2'
27
27
  end
data/renovate.json CHANGED
@@ -2,5 +2,9 @@
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
3
  "extends": [
4
4
  "config:base"
5
+ ],
6
+ "ignorePaths": [
7
+ "jekyll-tests/jekyll-3/Gemfile",
8
+ "jekyll-tests/jekyll-4/Gemfile"
5
9
  ]
6
10
  }
@@ -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
@@ -0,0 +1,2 @@
1
+ _site/
2
+ uml/
@@ -0,0 +1,13 @@
1
+ .ONESHELL:
2
+ .SHELLFLAGS: -e -o pipefail -c
3
+ .PHONY: clean sa env lint
4
+
5
+ SHELL = bash
6
+
7
+ TESTS = $(wildcard */)
8
+ all:
9
+ for t in ${TESTS}; do
10
+ cd $${t}
11
+ bundle install
12
+ bundle exec jekyll build
13
+ done
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gem 'jekyll', '4.3.3'
6
+ gem 'jekyll-plantuml', path: '../..'
7
+ gem 'kramdown', '2.4.0'
8
+ gem 'kramdown-parser-gfm', '1.1.0'
9
+ gem 'liquid', '4.0.4'
@@ -0,0 +1,6 @@
1
+ title: simple
2
+ markdown: kramdown
3
+ encoding: utf-8
4
+ timezone: Europe/Moscow
5
+ plugins:
6
+ - jekyll-plantuml
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <!DOCTYPE html>
5
+ <html>
6
+ <body>
7
+ {{ content }}
8
+ </body>
9
+ </html>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ date: 2023-06-02
4
+ title: "Test"
5
+ ---
6
+
7
+ This is just a test:
8
+
9
+ {% plantuml %}
10
+ [First] - [Second]
11
+ {% endplantuml %}
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gem 'jekyll', '4.3.3'
6
+ gem 'jekyll-plantuml', path: '../..'
7
+ gem 'kramdown', '2.4.0'
8
+ gem 'liquid', '4.0.4'
@@ -0,0 +1,6 @@
1
+ title: simple
2
+ markdown: kramdown
3
+ encoding: utf-8
4
+ timezone: Europe/Moscow
5
+ plugins:
6
+ - jekyll-plantuml
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <!DOCTYPE html>
5
+ <html>
6
+ <body>
7
+ {{ content }}
8
+ </body>
9
+ </html>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ date: 2023-06-02
4
+ title: "Test"
5
+ ---
6
+
7
+ This is just a test:
8
+
9
+ {% plantuml %}
10
+ [First] - [Second]
11
+ {% endplantuml %}
12
+
13
+ This is another test:
14
+
15
+ ```plantuml
16
+ [First] - [Second]
17
+ ```
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.0
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: 2023-06-02 00:00:00.000000000 Z
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/jekyll_plantuml.rb
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.2.15
85
+ rubygems_version: 3.4.10
74
86
  signing_key:
75
87
  specification_version: 4
76
88
  summary: Jekyll PlantUML Automation
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.2
4
- cache: bundler
5
- branches:
6
- only:
7
- - master
8
- install:
9
- - travis_retry bundle install
10
- script:
11
- - rake
12
-