middleman-pagegroups 1.0.7 → 1.0.8

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
  SHA1:
3
- metadata.gz: acb71906ad3df771231d5385e851355c8533e744
4
- data.tar.gz: 7531bd3c08f7d112a4d09fa8cae6492c8c3a46d8
3
+ metadata.gz: 8a663d587807806cc2d79887abd35d5d8e12842b
4
+ data.tar.gz: e4318fb7a44e0a2ba22010742a32f9ccbff8a58b
5
5
  SHA512:
6
- metadata.gz: 7ae32afedad7aaea8003d1a488d3b13660787ce976fe78b522ea75f15fe0237b3175bd5af2c1de1ac826ed00a523df8abc4c6cafcc4bed4bff2d494566565ac0
7
- data.tar.gz: da136a46340fa49c9394887389f9ec3a8b4cba73a495d9454bd0fe74d65e0a2d6c6e8d76145da9e04c21bb155726eb90dcce2d1a22578c2103317a22acac3cda
6
+ metadata.gz: d5fce11e9800d8d81840f52132ca3eb9c22235d8e8523cef97b86a8d836e7971c0311ed260bc6e8c15ca66d6f4885f172df4b58ad994b653e736de0db5697b8a
7
+ data.tar.gz: 9c2f731c403314f79adc701be93ab68aa0007d8efc99926c3869128a8a84ddb9b8186781030ca745d5e0dc342cd38ddc14ecb5a9716d12ebed3638361ef8f85c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  middleman-pagegroups change log
2
2
  ===============================
3
3
 
4
+ - Version 1.0.8 / 2018-May-18
5
+
6
+ - Finalize 1.0.8
7
+ - Proposed fix for #2
8
+
4
9
  - Version 1.0.7 / 2018-April-25
5
10
 
6
11
  - Correct the version to non-wip.
@@ -25,7 +30,7 @@ middleman-pagegroups change log
25
30
  - Fix using page order prefixes for nested folders.
26
31
  - Updated fixture application to use deeply nested folders.
27
32
 
28
- - Version 1.0.4 / 2016-May-15
33
+ - Version 1.0.4 / 2016-May-14
29
34
 
30
35
  - Version 1.0.4 Changes:
31
36
  - Better Rakefile for version management.
@@ -59,6 +64,6 @@ middleman-pagegroups change log
59
64
  - Bump to v1.0.1 to repair bad sample project
60
65
  - Added RubyGems badge to README
61
66
 
62
- - Version 1.0.0 / 2016-April-03
67
+ - Version 1.0.0 / 2016-April-02
63
68
 
64
69
  - Version 1.0.0
@@ -9,7 +9,7 @@ gem 'wdm', '~> 0.1.0', platforms: [:mswin, :mingw]
9
9
  gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby]
10
10
 
11
11
  # Middleman Gems
12
- gem 'middleman-pagegroups', '~> 1.0.7'
12
+ gem 'middleman-pagegroups', '~> 1.0.8'
13
13
  gem 'middleman', '~> 4.1.7'
14
14
  gem 'middleman-syntax'
15
15
 
@@ -86,7 +86,7 @@ helpers do
86
86
  end
87
87
 
88
88
  def product_version
89
- '1.0.7'
89
+ '1.0.8'
90
90
  end
91
91
 
92
92
  def product_uri
@@ -435,7 +435,7 @@ class MiddlemanPageGroups < ::Middleman::Extension
435
435
  # Handle preceding path parts, first, if there's a grandparent (all
436
436
  # top level items have a parent and aren't part of this case). These
437
437
  # will have already been set because we've done shallower paths first.
438
- if resource.parent.parent
438
+ if resource.parent && resource.parent.parent
439
439
  parent_path_parts = File.dirname(resource.parent.destination_path).split('/')
440
440
  path_parts = parent_path_parts + path_parts[parent_path_parts.count..-1]
441
441
  end
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module MiddlemanPageGroups
3
- VERSION = '1.0.7'
3
+ VERSION = '1.0.8'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-pagegroups
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Derry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-25 00:00:00.000000000 Z
11
+ date: 2018-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman-core
@@ -254,7 +254,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
254
254
  version: '0'
255
255
  requirements: []
256
256
  rubyforge_project:
257
- rubygems_version: 2.6.13
257
+ rubygems_version: 2.6.14
258
258
  signing_key:
259
259
  specification_version: 4
260
260
  summary: Provides logical page groups and easy navigation for Middleman projects.