jekyll-plantuml-url 0.1.2 → 0.1.3
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 +5 -5
- data/.gitlab-ci.yml +9 -7
- data/README.md +4 -3
- data/lib/jekyll-plantuml-url.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b4c1a3a07da81f10ca10194c019151573d617a2752b4077375e44800676762cd
|
4
|
+
data.tar.gz: '0448c80fe7b13d41812e892ab4402fa597e179261c7d4ec69e5b8886f9a97b43'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0bbfcbb41f6bee2867d0af29ff654608a1deff5bceb99665cd7afeadd1be399dfb96e5a79ff112f6de47dc3ee64947843f72102847d1a815e75367e1fa6e99c
|
7
|
+
data.tar.gz: 161f7c8420d0d8d086c3190d15cd1fc8c8ddb51b74a70e1bdce80ad55657ebdcbf4e1f3320183cfce8829b5e8ac54952aeed92b1c5e32f133bac09ed7ee56825
|
data/.gitlab-ci.yml
CHANGED
@@ -36,23 +36,21 @@ test:
|
|
36
36
|
- 'echo "{% plantuml %}\n[First] - [Second]\n{% endplantuml %}\n" >> index.md'
|
37
37
|
- bundle install
|
38
38
|
- bundle exec jekyll build
|
39
|
-
artifacts:
|
40
|
-
paths:
|
41
|
-
- ./*.gem
|
42
|
-
expire_in: 1 week
|
43
39
|
tags:
|
44
40
|
- docker
|
45
41
|
|
46
42
|
Release_Staging:
|
47
43
|
stage: staging
|
44
|
+
environment: staging
|
45
|
+
variables:
|
46
|
+
GIT_STRATEGY: none
|
48
47
|
script:
|
49
48
|
- ls -la
|
50
49
|
# - deployctl release .... need to build the website for release, who? deployd ?
|
50
|
+
# or push to private repo
|
51
51
|
artifacts:
|
52
52
|
paths:
|
53
|
-
|
54
|
-
only:
|
55
|
-
- tags
|
53
|
+
- ./*.gem
|
56
54
|
except:
|
57
55
|
- branches
|
58
56
|
tags:
|
@@ -61,6 +59,10 @@ Release_Staging:
|
|
61
59
|
Release_Production:
|
62
60
|
stage: production
|
63
61
|
environment: production
|
62
|
+
dependencies:
|
63
|
+
- Release_Staging
|
64
|
+
variables:
|
65
|
+
GIT_STRATEGY: none
|
64
66
|
script:
|
65
67
|
- ls -la
|
66
68
|
- mkdir -pv ~/.gem
|
data/README.md
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
[](http://badge.fury.io/rb/jekyll-plantuml-url)
|
2
2
|
|
3
3
|
|
4
|
-
A plugin for
|
4
|
+
A plugin for Jekyll that provides integration of PlantUML diagrams inside Jekyll for deployment in your website.
|
5
5
|
|
6
|
-
This
|
6
|
+
This plugin makes use of an external resource, defined by the configurable `plantulm:url`, to build the PlantUML diagram.
|
7
|
+
|
8
|
+
Once the diagram has been created, it is stored in the uml/ directory. So, using this plugin provides a simple way to integrate PlantUML diagrams without needing the Gaphviz libraries, Java, or PlantUML jar file.
|
7
9
|
|
8
|
-
Once created, the diagram is stored at `uml/` directory. So, by using this plugin there is a simple way to integrate plantuml diagramm without the Graphiz libraries, Java and plantuml jar file.
|
9
10
|
## Install Jekyll plugin
|
10
11
|
|
11
12
|
Install it first:
|
data/lib/jekyll-plantuml-url.rb
CHANGED
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-plantuml-url
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dgoo2308
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
78
|
rubyforge_project:
|
79
|
-
rubygems_version: 2.6
|
79
|
+
rubygems_version: 2.7.6
|
80
80
|
signing_key:
|
81
81
|
specification_version: 2
|
82
82
|
summary: Jekyll PlantUML url Automation
|