jekyll-plantastisch 1.0.0 → 1.0.1

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
2
  SHA256:
3
- metadata.gz: c27fffc770a9e01100476507c46206d81951e293c4a2eb9a5bdf5e38516b16d8
4
- data.tar.gz: 5346b7be5c999432a3687a608ae4d22cc691f01aabb18ec55cbb65bce349179a
3
+ metadata.gz: 74e2f11872228fab7f5b22ddb9995c12e2e16997c4deeaf5031e56346512c3c2
4
+ data.tar.gz: 6cf321e1365417dd6840142f7c23dcda5e78427e9463049d75dd241d94ca25c4
5
5
  SHA512:
6
- metadata.gz: 35a762c2232c2c6d7575ab241e7f85d6fccedcf057638090e8bf056b64b16c4dcc2530e371158c1cd172043a85b8a437bb43cde51a50204127e6126fef92900f
7
- data.tar.gz: c34b6dc598970edf3fec7b267ad8e05643b63017a0f5338bd39bff44d18e6f9fed9467a0002cdc56802007ff6fa7b4f3e287f52e3f8e61b2d89d563b0d96c1cf
6
+ metadata.gz: a7d8e86f6676f35095ed844d5fca127ab6f511322eaa0cf4db9b5c142c508dd8059b900ed0fcce0711e34e99333802c007dede5078b179a590384daab357af97
7
+ data.tar.gz: bb0e1b9b7432f521cdcb2a0a2d17fe36175be7cbde71b47bb85a6eb233110f7bff1d7ab8629562fb5f0951ebcedabc7218c27f7f0c65475beffb82aed580cd00
data/README.md CHANGED
@@ -1,4 +1,28 @@
1
- [![Gem Version](https://badge.fury.io/rb/jekyll-plantuml.svg)](http://badge.fury.io/rb/jekyll-plantuml)
1
+ [![Gem Version](https://badge.fury.io/rb/jekyll-plantastisch.svg)](https://badge.fury.io/rb/jekyll-plantastisch)
2
+
3
+ # Jekyll Plantastisch
4
+ > "Ein fantastischer PlantUML plugin!"
5
+
6
+ `jekyll-plantastisch` is a PlantUML jekyll plugin with several
7
+ distinguishable features:
8
+
9
+ - It uses `<object>` html tag instead of `<img>` tag, when embedding
10
+ rendered diagrams on page.
11
+
12
+ This allows you to use interactive SVG
13
+ diagrams with links (see [PlantUML docs on this][plantuml_links]).
14
+
15
+ - It requires you to put `@startuml` and `@enduml` tags into the
16
+ source of your diagram instead of forcibly inserting them.
17
+
18
+ This enables you to store the diagram's source in a completely
19
+ separate file in `_includes` directory and reuse it in several
20
+ places, while simply embedding it, when required:
21
+ ```jekyll
22
+ {% plantuml %}
23
+ {% include diagram.uml %}
24
+ {% endplantuml %}
25
+ ```
2
26
 
3
27
  ## Install Jekyll plugin
4
28
 
@@ -63,3 +87,4 @@ Now, it's time to create a diagram, in your Jekyll blog page:
63
87
  {% endplantuml %}
64
88
  ```
65
89
 
90
+ [plantuml_links]: http://plantuml.com/link
@@ -22,5 +22,5 @@ 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
26
  end
@@ -22,5 +22,5 @@
22
22
  # SOFTWARE.
23
23
 
24
24
  module PlantUML
25
- VERSION = '1.0.0'
25
+ VERSION = '1.0.1'
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-plantastisch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vagiz Duseev
@@ -15,14 +15,14 @@ dependencies:
15
15
  name: jekyll
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '2.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - "~>"
25
+ - - ">"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '2.0'
28
28
  description: PlantUML diagrams in Jekyll pages