jekyll-contentblocks 0.0.3 → 0.0.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
  SHA1:
3
- metadata.gz: 12919f1fc09805b1f3e91fc6b07841d81ce0ee7a
4
- data.tar.gz: 064630ea1d99604218612fb556e3d56e32d50c53
3
+ metadata.gz: 0aae381c423e7d7a76af0fd169aa414e0f995ec4
4
+ data.tar.gz: 1ffd4c35f2fd3e188ee8dbe5f1e224409d771e61
5
5
  SHA512:
6
- metadata.gz: dfc73df1ae4ca609ea1dc322c0c8b0cd46ccff53df8422650117343b8ac8ae2c582403eaee02d67aaf6aac8bd006263e6a82f5f17f46714a85a43c005def225e
7
- data.tar.gz: 9243aeba1dde031fc24879c4a602e2842c277c45125cf02255871e57ca829c452fb7e7aa0d9aead97373d3f84c7c437249427804a8e47be9a02f6a7419b12999
6
+ metadata.gz: c83a2a92e7822f7fee68b82230266131c4533c005f919409d33fde1b901833cbf68246b75ac5f27dd046ea8eb339ae5c79d71748184a03cb8bca317db71e4648
7
+ data.tar.gz: 82de969458580e7bdd557d836d26509dbe2f30acb9fc1d662f2a691b6079f86952b6cadc23e228b3781624c5ce61accc52667b28af09dd1ef0b8726d341be348
data/Appraisals CHANGED
@@ -37,3 +37,11 @@ end
37
37
  appraise "jekyll-2.3.0" do
38
38
  gem "jekyll", "2.3.0"
39
39
  end
40
+
41
+ appraise "jekyll-2.4.0" do
42
+ gem "jekyll", "2.4.0"
43
+ end
44
+
45
+ appraise "jekyll-2.5.3" do
46
+ gem "jekyll", "2.5.3"
47
+ end
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.0.4"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.1.2"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.2.1"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.3.1"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.4.3"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "1.5.1"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "2.0.3"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "2.1.1"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "2.2.0"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "jekyll", "2.3.0"
6
6
  gem "appraisal", "1.0.2"
7
+ gem "pry"
7
8
 
8
9
  gemspec :path => "../"
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "2.4.0"
6
+ gem "appraisal", "1.0.2"
7
+ gem "pry"
8
+
9
+ gemspec :path => "../"
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "2.5.3"
6
+ gem "appraisal", "1.0.2"
7
+ gem "pry"
8
+
9
+ gemspec :path => "../"
@@ -11,7 +11,7 @@ module Jekyll
11
11
  def render(context)
12
12
  block_content = content_for_block(context).join
13
13
  converters = context.environments.first['converters']
14
- converters.reduce(block_content) do |content, converter|
14
+ Array(converters).reduce(block_content) do |content, converter|
15
15
  converter.convert(content)
16
16
  end
17
17
  end
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module ContentBlocks
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-contentblocks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rusty Geldmacher
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-08 00:00:00.000000000 Z
11
+ date: 2015-04-06 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: '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: '0'
27
27
  description: Provides a mechanism for passing content up to the layout, like Rails'
@@ -32,7 +32,7 @@ executables: []
32
32
  extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
- - .gitignore
35
+ - ".gitignore"
36
36
  - Appraisals
37
37
  - Gemfile
38
38
  - LICENSE.txt
@@ -48,6 +48,8 @@ files:
48
48
  - gemfiles/jekyll_2.1.1.gemfile
49
49
  - gemfiles/jekyll_2.2.0.gemfile
50
50
  - gemfiles/jekyll_2.3.0.gemfile
51
+ - gemfiles/jekyll_2.4.0.gemfile
52
+ - gemfiles/jekyll_2.5.3.gemfile
51
53
  - jekyll-contentblocks.gemspec
52
54
  - lib/jekyll-contentblocks.rb
53
55
  - lib/jekyll-contentblocks/common.rb
@@ -67,17 +69,17 @@ require_paths:
67
69
  - lib
68
70
  required_ruby_version: !ruby/object:Gem::Requirement
69
71
  requirements:
70
- - - '>='
72
+ - - ">="
71
73
  - !ruby/object:Gem::Version
72
74
  version: '0'
73
75
  required_rubygems_version: !ruby/object:Gem::Requirement
74
76
  requirements:
75
- - - '>='
77
+ - - ">="
76
78
  - !ruby/object:Gem::Version
77
79
  version: '0'
78
80
  requirements: []
79
81
  rubyforge_project:
80
- rubygems_version: 2.1.11
82
+ rubygems_version: 2.4.3
81
83
  signing_key:
82
84
  specification_version: 4
83
85
  summary: A Jekyll plugin kind of like Rails' content_for