jekyll-plantuml 1.3.3 → 1.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ddb433e97aba2753342f951882429e3c95db620c
4
- data.tar.gz: a7bc01bc691da40dd44ed4994939d3beae93f2a7
2
+ SHA256:
3
+ metadata.gz: ac2e323ded0c0a23181c76586e43737fed9acb33bb21ccb9161a76aaff7e3a9a
4
+ data.tar.gz: c14813b4d754e6cad429978a78ff7909d03af3e96efae5d49b86db1abd242ae4
5
5
  SHA512:
6
- metadata.gz: 31d5062e14bca175c370109613592e477eec865856b79c154eb59e8ed51da9d06d0ee918563f69849cc7fe02c8cb228d046b3c10f0fa21f74204953611985a5e
7
- data.tar.gz: 32c683ea5262636ba4aaf3730893d1fff8f41086285aeb62abe82c59b237c4a54e5c6de74b87c63680a3cfd8aa782bf71ffce30b52b4b589097a3dbaaf3f0655
6
+ metadata.gz: 1eecead38ad73e2a4aed1f6b7a4494f8f02aaac0fc2ec36154ff6690c4a3ca3d5246ebe6051d621cca7d2fab7260e94b7ca23051c912e045ed759cf32cae9731
7
+ data.tar.gz: f22bfe23cbdda69a558af0c07977dd1ce939a92847857c7a155210bf4153aef8576b55ec3f6cfc5dc96d35c0f48e95fa6477b598a06fbe23002c22c64c4a70ae
data/.0pdd.yml CHANGED
@@ -3,3 +3,7 @@ errors:
3
3
  # alerts:
4
4
  # github:
5
5
  # - yegor256
6
+
7
+ tags:
8
+ - pdd
9
+ - bug
@@ -0,0 +1,12 @@
1
+ Make sure the title of the issue explains the problem you are having. Also, the description of the issue must clearly explain what is broken, not what you want us to implement. Go through this checklist and make sure you answer "YES" to all points:
2
+
3
+ - You have all pre-requisites listed in README.md installed
4
+ - You are sure that you are not reporting a duplicate (search all issues)
5
+ - You say "is broken" or "doesn't work" in the title
6
+ - You tell us what you are trying to do
7
+ - You explain the results you are getting
8
+ - You suggest an alternative result you would like to see
9
+
10
+ This article will help you understand what we are looking for: http://www.yegor256.com/2014/11/24/principles-of-bug-tracking.html
11
+
12
+ Thank you for your contribution!
@@ -0,0 +1,11 @@
1
+ Many thanks for your contribution, we truly appreciate it. We will appreciate it even more, if you make sure that you can say "YES" to each point in this short checklist:
2
+
3
+ - You made a small amount of changes (less than 100 lines, less than 10 files)
4
+ - You made changes related to only one bug (create separate PRs for separate problems)
5
+ - You are ready to defend your changes (there will be a code review)
6
+ - You don't touch what you don't understand
7
+ - You ran the build locally and it passed
8
+
9
+ This article will help you understand what we are looking for: http://www.yegor256.com/2015/02/09/serious-code-reviewer.html
10
+
11
+ Thank you for your contribution!
@@ -1,10 +1,15 @@
1
1
  assets:
2
- rubygems.yml: zerocracy/home#assets/rubygems.yml
3
- s3cfg: zerocracy/home#assets/s3cfg
2
+ rubygems.yml: yegor256/home#assets/rubygems.yml
3
+ s3cfg: yegor256/home#assets/s3cfg
4
+ install: |
5
+ export GEM_HOME=~/.ruby
6
+ export GEM_PATH=$GEM_HOME:$GEM_PATH
7
+ sudo gem install pdd -v 0.20.5
8
+ bundle install
9
+ pdd -f /dev/null
4
10
  release:
5
11
  script: |-
6
- bundle install
7
- rake
12
+ bundle exec rake
8
13
  rm -rf *.gem
9
14
  sed -i "s/1\.0\.snapshot/${tag}/g" lib/version.rb
10
15
  git add lib/version.rb
@@ -12,12 +17,10 @@ release:
12
17
  gem build jekyll-plantuml.gemspec
13
18
  chmod 0600 ../rubygems.yml
14
19
  gem push *.gem --config-file ../rubygems.yml
15
- commanders:
16
- - yegor256
17
- deploy:
18
- script: bundle
19
- architect:
20
- - yegor256
21
- - davvd
22
20
  merge:
23
- commanders: []
21
+ script: |-
22
+ bundle exec rake
23
+ deploy:
24
+ script: |-
25
+ echo "There is nothing to deploy"
26
+ exit -1
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2014-2017 Yegor Bugayenko
3
+ Copyright (c) 2014-2019 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/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # (The MIT License)
2
2
  #
3
- # Copyright (c) 2014-2017 Yegor Bugayenko
3
+ # Copyright (c) 2014-2019 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
@@ -22,5 +22,6 @@ Gem::Specification.new do |s|
22
22
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
23
23
  s.rdoc_options = ["--charset=UTF-8"]
24
24
  s.extra_rdoc_files = %w[README.md LICENSE.txt]
25
- s.add_runtime_dependency('jekyll', '>2.0')
25
+ s.add_runtime_dependency 'jekyll', '>2.0'
26
+ s.add_development_dependency 'rake', '12.0.0'
26
27
  end
@@ -1,6 +1,6 @@
1
1
  # (The MIT License)
2
2
  #
3
- # Copyright (c) 2014-2017 Yegor Bugayenko
3
+ # Copyright (c) 2014-2019 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
@@ -45,15 +45,14 @@ module Jekyll
45
45
  f.write(super)
46
46
  f.write("\n@enduml")
47
47
  }
48
- system("plantuml -tsvg #{uml}")
48
+ system("plantuml -tsvg #{uml}") or raise "PlantUML error: #{super}"
49
49
  site.static_files << Jekyll::StaticFile.new(
50
50
  site, site.source, 'uml', "#{name}.svg"
51
51
  )
52
52
  puts "File #{svg} created (#{File.size(svg)} bytes)"
53
53
  end
54
54
  end
55
- "<p><img src='#{site.baseurl}/uml/#{name}.svg' #{@html}
56
- alt='PlantUML SVG diagram' class='plantuml'/></p>"
55
+ "<p><object data='#{site.baseurl}/uml/#{name}.svg' type='image/svg+xml' #{@html} class='plantuml'></object></p>"
57
56
  end
58
57
  end
59
58
  end
@@ -1,6 +1,6 @@
1
1
  # (The MIT License)
2
2
  #
3
- # Copyright (c) 2014-2017 Yegor Bugayenko
3
+ # Copyright (c) 2014-2019 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
@@ -21,5 +21,5 @@
21
21
  # SOFTWARE.
22
22
 
23
23
  module PlantUML
24
- VERSION = '1.3.3'
24
+ VERSION = '1.3.4'
25
25
  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.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-19 00:00:00.000000000 Z
11
+ date: 2019-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 12.0.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 12.0.0
27
41
  description: PlantUML diagrams in Jekyll pages
28
42
  email: yegor@tpc2.com
29
43
  executables: []
@@ -33,6 +47,8 @@ extra_rdoc_files:
33
47
  - LICENSE.txt
34
48
  files:
35
49
  - ".0pdd.yml"
50
+ - ".github/ISSUE_TEMPLATE.md"
51
+ - ".github/PULL_REQUEST_TEMPLATE.md"
36
52
  - ".gitignore"
37
53
  - ".pdd"
38
54
  - ".rultor.yml"
@@ -41,7 +57,6 @@ files:
41
57
  - LICENSE.txt
42
58
  - README.md
43
59
  - Rakefile
44
- - TEAM.md
45
60
  - jekyll-plantuml.gemspec
46
61
  - lib/jekyll-plantuml.rb
47
62
  - lib/version.rb
@@ -65,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
80
  - !ruby/object:Gem::Version
66
81
  version: '0'
67
82
  requirements: []
68
- rubyforge_project:
69
- rubygems_version: 2.6.8
83
+ rubygems_version: 3.0.1
70
84
  signing_key:
71
85
  specification_version: 2
72
86
  summary: Jekyll PlantUML Automation
data/TEAM.md DELETED
@@ -1,17 +0,0 @@
1
- ## Team
2
-
3
- The following members are in the project team:
4
-
5
- Role | Members
6
- ---|---
7
- PM | @davvd
8
- CR |
9
- DEV |
10
- IMP |
11
- ARC |
12
- DES |
13
- PO | @yegor256
14
- ITR |
15
- QA |
16
- SA |
17
- HLP |