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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: dba99b23503c7b97e8147a16df0a96193a6496d7
4
- data.tar.gz: b78dd323c57449f7fced5bc444c02153f8aad612
2
+ SHA256:
3
+ metadata.gz: b4c1a3a07da81f10ca10194c019151573d617a2752b4077375e44800676762cd
4
+ data.tar.gz: '0448c80fe7b13d41812e892ab4402fa597e179261c7d4ec69e5b8886f9a97b43'
5
5
  SHA512:
6
- metadata.gz: 2179d2a8b1f663c3e93677544c8a8728987e2f3aaba399b5cac5316ec65c858b61758d14708326f8c2be216393bce1c8d65223c9ec6002b5abd943306c309dce
7
- data.tar.gz: fc018e75077cab378f432e7afaafcb453d0acfd506701b5237fb7384ef3e9e65511242f9570e9d0b8cca33864e2149fcc1e3a50a3a8db9aa8366dd784e5e7b8d
6
+ metadata.gz: b0bbfcbb41f6bee2867d0af29ff654608a1deff5bceb99665cd7afeadd1be399dfb96e5a79ff112f6de47dc3ee64947843f72102847d1a815e75367e1fa6e99c
7
+ data.tar.gz: 161f7c8420d0d8d086c3190d15cd1fc8c8ddb51b74a70e1bdce80ad55657ebdcbf4e1f3320183cfce8829b5e8ac54952aeed92b1c5e32f133bac09ed7ee56825
@@ -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
- - ./*.gem
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
  [![Gem Version](https://badge.fury.io/rb/jekyll-plantuml-url.svg)](http://badge.fury.io/rb/jekyll-plantuml-url)
2
2
 
3
3
 
4
- A plugin for jekyll to use plantuml diagram inside your Jekyll for you website.
4
+ A plugin for Jekyll that provides integration of PlantUML diagrams inside Jekyll for deployment in your website.
5
5
 
6
- This will use external resource to build plantuml diagram.
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:
@@ -126,7 +126,7 @@ module Jekyll
126
126
  end
127
127
  end
128
128
  end
129
- "<p><img src='/uml/#{name}.#{uml_type}' #{@html}
129
+ "<p><img src='#{site.baseurl}/uml/#{name}.#{uml_type}' #{@html}
130
130
  alt='PlantUML #{uml_type} diagram' class='plantuml'/></p>"
131
131
  end
132
132
  end
@@ -1,3 +1,3 @@
1
1
  module PlantUML
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
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.2
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: 2017-02-27 00:00:00.000000000 Z
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.10
79
+ rubygems_version: 2.7.6
80
80
  signing_key:
81
81
  specification_version: 2
82
82
  summary: Jekyll PlantUML url Automation