jekyll-page-hooks 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NDY5OGQwMWY3NTMwYTAwNWRlNzI0NDRjZDIwNmRlYWMxNzllYTZlOA==
5
- data.tar.gz: !binary |-
6
- Y2FmZWVkZjZmN2U3NzQ5YWE4OGVlNWI5Y2JiMjQyNDI4MWQyZTg3ZA==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- Mzc5YzUyNTI0NDVjMjIwNmZiNGFhNzM3Y2FjYjM0YzQ0N2NjOGY3YzE1YmFh
10
- YWUxNDZkYTM3NzYzNWRlOTc1YzliZWQ5NjVhYTc0ZDlhMzM1NWY0NWQxNzA3
11
- NDA4NjEzMGYwMzY5ZTFkN2ZmODljNGUwNDZiN2U0NWQ5ZjJjNDU=
12
- data.tar.gz: !binary |-
13
- OWZiZDJjNDM1NjllNDUwYzhjYTIyOWQ5ZDY3MzBmZDRmMmE4ZDY3N2UwNTU0
14
- NmMyMmMxMTQ5MWMyOTM0ODcwMTBiNzg1YzBlNWNlMWM5NDU3ODkwMGZhN2Ix
15
- ZDdlYTA0ODFiMzA2ZWFkMjc3MTJmNzY5MTU5MzY1ZTdmM2Y1MzI=
2
+ SHA1:
3
+ metadata.gz: 8efc5a6ff73feae7e8d27c77583b2388ff8925a1
4
+ data.tar.gz: 5b97ec3d3d6e3657648a4b55b71c81aa31069069
5
+ SHA512:
6
+ metadata.gz: 606c403b6fade46c8e121b5cec472d40a741c84db796bd38975307e23e9fc6fc08ef61dbe091162fe29a20ddbc2083646d76eafe898a3e5b69ba7d14916b0379
7
+ data.tar.gz: e03b2ef8ebc7f9622aad4b3ac08f83b4db2c3a5788e7c3b603477994dd70a581f4317f534042bb161bb81a1a99cd40b1a06d525911a67a3031282f0d322d79a0
data/CHANGELOG.md CHANGED
@@ -1,15 +1,17 @@
1
1
  # Changelog
2
2
 
3
- ### 1.0.0
4
- - Initial release.
3
+ ### 1.1.1
4
+ - Added support for Octopress Ink.
5
5
 
6
- ### 1.0.1
7
- - Naming refactor
6
+ ### 1.1.0
7
+ - Added Jekyll::ConvertiblePage type to hookable classes.
8
8
 
9
9
  ### 1.0.2
10
- - Now requires Jekyll (oops)
11
- - Added tests
10
+ - Now requires Jekyll (oops).
11
+ - Added tests.
12
12
 
13
- ### 1.1.0
14
- - Added Jekyll::ConvertiblePage type to hookable classes
13
+ ### 1.0.1
14
+ - Naming refactor.
15
15
 
16
+ ### 1.0.0
17
+ - Initial release.
data/README.md CHANGED
@@ -75,7 +75,7 @@ some external process.
75
75
  4. Push to the branch (`git push origin my-new-feature`)
76
76
  5. Create new Pull Request
77
77
 
78
- ## Lisence
78
+ ## License
79
79
 
80
80
  Copyright (c) 2013 Brandon Mathis
81
81
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module PageHooksVersion
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
@@ -88,7 +88,8 @@ module Jekyll
88
88
  end
89
89
 
90
90
  def is_page?
91
- self.class.to_s == 'Jekyll::Page'
91
+ self.class.to_s == 'Jekyll::Page' ||
92
+ self.class.to_s == 'Octopress::Ink::Page'
92
93
  end
93
94
 
94
95
  def is_convertible_page?
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-page-hooks
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
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-26 00:00:00.000000000 Z
11
+ date: 2014-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.0.0
27
27
  description: Monkeypatches Jekyll's Site, Post, Page and Convertible classes to allow
@@ -60,17 +60,17 @@ require_paths:
60
60
  - lib
61
61
  required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
- - - ! '>='
63
+ - - '>='
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - ! '>='
68
+ - - '>='
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
72
  rubyforge_project:
73
- rubygems_version: 2.0.7
73
+ rubygems_version: 2.1.11
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: Allows other plugins to access page/post content before and after render,