asciidoctor-html 1.1.3 → 1.1.4

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
2
  SHA256:
3
- metadata.gz: b4adbacef008c728622fe3115c56dd2f4b4d3f1244c1c93788ad28c2bf17a1a1
4
- data.tar.gz: 0b85e766b8987edec79e4ff4b7380bc5e0de8fb03d1d82e8a80cadbfd6ab2690
3
+ metadata.gz: 83a3f193d8721d8cf9802d516ef890ea42b90a43127af0a288756dc1346d5972
4
+ data.tar.gz: 072660bf5f7db3594a5880ce1272931f55361b843aee0fa6e6b2ce971cd5e54d
5
5
  SHA512:
6
- metadata.gz: c7d8fd6cb10407ea14d0f56103e8e4c6cacb769997fd43a8f6129f76b851ffa34990c012c8141432464f4e563b5cecb9f3e5bb6dd2261b4e4003b8120404b6a9
7
- data.tar.gz: f38e84789bc6473d58f186736d883c5d336e9fd254b078fccd61d71c20806c8b43c38415b9c2ecf39ec3d46c9b267f8e24f751238b8d9b5db97b2d37a1c232e3
6
+ metadata.gz: ce72852db2f5b418eedd823c05f0a29784e3423bf9815208fadf0689c58389b1afc00ee132bd831b0960b92f884f9065259d16f0bc56c6e789f05c263517a3cb
7
+ data.tar.gz: a4e4773071013b8662382634e517184f4c08433df80dc45ada5a3cf62da3791717b6b75ecfde83af7cfe349882a6c8e3d7dcaa3097225522856bc54ac09b807b
data/CHANGELOG.md CHANGED
@@ -173,3 +173,7 @@
173
173
  ## [1.1.3] - 2026-03-21
174
174
 
175
175
  - CSS tweak of margin below chapter title.
176
+
177
+ ## [1.1.4] - 2026-03-21
178
+
179
+ - Prepend srcdir to filenames so script works outside srcdir as it should.
@@ -50,7 +50,7 @@ module Asciidoctor
50
50
  %w[chapters appendices].each do |prop|
51
51
  config[prop] ||= []
52
52
  config[prop] = config[prop].map do |f|
53
- File.expand_path(f, config_dir)
53
+ "#{config["srcdir"]}/#{f}"
54
54
  end
55
55
  end
56
56
  config
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Asciidoctor
4
4
  module Html
5
- VERSION = "1.1.3"
5
+ VERSION = "1.1.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-html
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ravi Rajani