asciidoctor-diagram 1.5.0 → 1.5.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
  SHA1:
3
- metadata.gz: ae72b79905bac3a581f14f6ddc1023cb4063186e
4
- data.tar.gz: 9ea96d64e9424ad728e094d3820e560c0e520f14
3
+ metadata.gz: 20f26c9e257f9041fae90a6f1ce31a8cd363c903
4
+ data.tar.gz: e249114bfa2333f2acce3dc32646d0f3dec578f0
5
5
  SHA512:
6
- metadata.gz: 3a3f7185995285e5d766c140d3a280f5628b819f8c976017a54a2df97fd908a08239566cc7c4aefd96934ad569d006f32ce2fea81533a4f612fdb46101d88c19
7
- data.tar.gz: c43fafdb81683e2eb63cd5f41756f1d9fe7ece075cb7b4ef9d2a2616e51db19a180f132ffc5413c0bfcb9616ea0ef081c081755a0106e799da1175aba1705706
6
+ metadata.gz: 05a5da2d13c1e7ae0bb3292209b13770c46be24bce41d87a54d62e33fb85b82802db2291b2d34bf46ebdb319fab9664079a49d7deb7b48dc81c2bc366ecebb65
7
+ data.tar.gz: dd4fdc2bd64db018cf83c6dce02a17540f8baaf4872febe09b77c58729adfc2854d55bbaf1518a364bae8f077a381bb82a62646211a5aff0f3cfb50a502431d1
data/CHANGELOG.adoc CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  == Development
4
4
 
5
+ == 1.5.1
6
+
7
+ Bug Fixes::
8
+
9
+ * Issue #119: Fixed an issue where 'unresolved constant' errors could occur when using PlantUML diagrams.
10
+
5
11
  == 1.5.0
6
12
 
7
13
  Enhancements::
@@ -1,5 +1,6 @@
1
1
  require_relative '../extensions'
2
2
  require_relative '../util/which'
3
+ require 'uri'
3
4
 
4
5
  module Asciidoctor
5
6
  module Diagram
@@ -64,8 +65,8 @@ module Asciidoctor
64
65
  end
65
66
 
66
67
  def resolve_path(path, parent, base_dir)
67
- if path =~ URI.regexp
68
- uri = URI.parse(path)
68
+ if path =~ ::URI.regexp
69
+ uri = ::URI.parse(path)
69
70
  if uri.scheme == 'file'
70
71
  parent.normalize_system_path(uri.path, base_dir)
71
72
  else
@@ -1,5 +1,5 @@
1
1
  module Asciidoctor
2
2
  module Diagram
3
- VERSION = "1.5.0"
3
+ VERSION = "1.5.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-diagram
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pepijn Van Eeckhoudt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-29 00:00:00.000000000 Z
11
+ date: 2016-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler