jekyll-post-tags 1.1.0 → 1.1.1

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: dc296d8f4add80c0002a7443deca2a61db53f41d96f5d61013d4b98add6f4004
4
- data.tar.gz: a1505efce2180779d9255a7c92022247dca0cf7a7ba703f96c235b723a2669b6
3
+ metadata.gz: 5581812eadfeee4acd296838f99c8a28c4d731c7bd4d4bd5de744f23f64f3641
4
+ data.tar.gz: '0699b342a96f2ad46162752da4de839e860fa029f4c6ee57a7b8fe092c8af2c5'
5
5
  SHA512:
6
- metadata.gz: 3f9eb8f498adb3bb552f2490d05e16b45dc093b51906b2b9cb44a9709d3608676859f5125a811dd49a188645140e6ab64d888ad59d13202bc1e3b53e2c156286
7
- data.tar.gz: eb45cfea6698a658f062ed0219241d31fd2e52943656c7a06a82a1d33825bd8d217e2784eb8a32a2f2a0f6da9122fa210b30655b6a50b37bc83e1129e3b082de
6
+ metadata.gz: d81064f982aa0eb5dc7d900dfe2ab41b9f2993db632893d961bf8c20bacf5b0da108a1f5dabd44e78a86f95637e4c371b4b19a050885b762b94e9fb2f89ed52f
7
+ data.tar.gz: ab9ce117d2ba1c45680abb38145266bab107b86249342bb05354ca828c5828d7867f7a9ffce615913466a3feef3407358616ef54c5eb8e2c4ee010a76ec8fb2c
@@ -13,7 +13,10 @@ module Jekyll
13
13
  # --
14
14
  private
15
15
  def tag_layout
16
- @tag_layout ||= File.join("_layouts", site.config["tags"]["layout"])
16
+ @tag_layout ||= begin
17
+ layout = site.config["tags"]["layout"].sub(%r!\.html$!, "")
18
+ File.join("_layouts", "#{layout}.html")
19
+ end
17
20
  end
18
21
 
19
22
  # --
@@ -6,7 +6,7 @@
6
6
  module Jekyll
7
7
  module Post
8
8
  module Tags
9
- VERSION = "1.1.0"
9
+ VERSION = "1.1.1"
10
10
  end
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-post-tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordon Bedwell