jekyll-contentblocks 0.0.1 → 0.0.2

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.
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.version = Jekyll::ContentBlocks::VERSION
9
9
  gem.authors = ["Rusty Geldmacher"]
10
10
  gem.email = ["russell.geldmacher@gmail.com"]
11
- gem.description = %q{Provides a mechanism for passing content up to the layout}
11
+ gem.description = %q{Provides a mechanism for passing content up to the layout, like Rails' content_for}
12
12
  gem.summary = %q{A Jekyll plugin kind of like Rails' content_for}
13
13
  gem.homepage = "https://github.com/rustygeldmacher/jekyll-contentblocks"
14
14
 
@@ -5,6 +5,7 @@ module Jekyll
5
5
  def do_layout(payload, layouts)
6
6
  # The contentblock tags needs access to the converter to process it while rendering.
7
7
  payload['converter'] = self.converter
8
+ payload['contentblocks'] = {}
8
9
  do_layout_orig(payload, layouts)
9
10
  end
10
11
  end
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module ContentBlocks
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-contentblocks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-05 00:00:00.000000000 Z
12
+ date: 2013-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -27,7 +27,8 @@ dependencies:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
- description: Provides a mechanism for passing content up to the layout
30
+ description: Provides a mechanism for passing content up to the layout, like Rails'
31
+ content_for
31
32
  email:
32
33
  - russell.geldmacher@gmail.com
33
34
  executables: []