jekyll-paginate-content 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d89fe133d3d6fbeac1388f938042e2bac0b8f2a
4
- data.tar.gz: 313b74ec9b559524c714030f0fae8b85bc7b51d8
3
+ metadata.gz: 3a368a5ecaaf041db59bbfccf429d4f3f99be19f
4
+ data.tar.gz: 267e320de472fd9c29ee5f8983a429c6f16ecf55
5
5
  SHA512:
6
- metadata.gz: 3579a68e5af9f50b240989710bf504538ece3044774122776aa44a9ad99b29cd9ede5554825616aea74d74c18fcf181e064493b92ba32eca91d4c80b0de8c33a
7
- data.tar.gz: 2fed90fcfbf04b08d02fdea782dbb0e18f939446124071878ff32257f5f24d01c2f36432554176d7f5ccb0de55206db789b09dd72f62a21c0fb4345df62c3c92
6
+ metadata.gz: 1fc990bc920130af1e51a4128b95404b535d4124f6ce8516bc96aaf5ee45dc05bff8355ad7a11bc0e2e0e8e008f0116527688074f2b2f908c56f83909632207b
7
+ data.tar.gz: 49259cc0c9a665344ff637b67530d6e507a5376b401b20f737517be079746988a6428948f40ba91144cb8d6fd922869d07e64871ef69a4f124cbc18eead83327
data/README.md CHANGED
@@ -133,7 +133,10 @@ See other [demos](#demos).
133
133
 
134
134
  ## What's new?
135
135
 
136
+ v1.0.4 Allow inclusion in `_config.yml` plugins
137
+
136
138
  v1.0.3 Bugfixes; force option
139
+
137
140
  v1.0.2 Don't regenerate unnecessarily
138
141
 
139
142
  ## Installation
@@ -196,7 +199,6 @@ paginate_content:
196
199
  # If a section is too short, the next section will be merged
197
200
  # Default: none
198
201
 
199
-
200
202
  title: ':title - :num/:max' # Title format of the split pages, default: original title
201
203
  # :num and :max are as in permalink,
202
204
  # :title is the original title
@@ -865,7 +867,9 @@ Everyone interacting in the Jekyll::Paginate::Content project's codebases, issue
865
867
 
866
868
  ## Also by the Author
867
869
 
868
- [Jekyll Stickyposts Plugin](https://github.com/ibrado/jekyll-stickyposts) - Move/pin posts tagged `sticky: true` before all others. Sorting on custom fields supported; collection and paginator friendly.
870
+ [Jekyll::Stickyposts](https://github.com/ibrado/jekyll-stickyposts) - Move/pin posts tagged `sticky: true` before all others. Sorting on custom fields supported; collection and paginator friendly.
871
+
872
+ [Jekyll::Tweetsert](https://github.com/ibrado/jekyll-tweetsert) - Turn tweets into Jekyll posts. Multiple timelines, filters, hashtags, automatic category/tags, and more!
869
873
 
870
- [Jekyll Tweetsert Plugin](https://github.com/ibrado/jekyll-tweetsert) - Turn tweets into Jekyll posts. Multiple timelines, filters, hashtags, automatic category/tags, and more!
874
+ [Jekyll::ViewSource](https://github.com/ibrado/jekyll-viewsource) - Generate pretty or plain HTML and/or Markdown source code pages.
871
875
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "jekyll/paginate/content"
4
+ require "jekyll-paginate-content"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -1,7 +1,7 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "jekyll/paginate/content/version"
4
+ require "jekyll-paginate-content/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "jekyll-paginate-content"
@@ -0,0 +1,6 @@
1
+ require "jekyll-paginate-content/version"
2
+
3
+ require "jekyll-paginate-content/generator"
4
+ require "jekyll-paginate-content/documentpage"
5
+ require "jekyll-paginate-content/pager"
6
+ require "jekyll-paginate-content/paginator"
@@ -1,7 +1,7 @@
1
1
  module Jekyll
2
2
  module Paginate
3
3
  module Content
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-paginate-content
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Ibrado
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-11 00:00:00.000000000 Z
11
+ date: 2018-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -60,12 +60,12 @@ files:
60
60
  - bin/console
61
61
  - bin/setup
62
62
  - jekyll-paginate-content.gemspec
63
- - lib/jekyll/paginate/content.rb
64
- - lib/jekyll/paginate/content/documentpage.rb
65
- - lib/jekyll/paginate/content/generator.rb
66
- - lib/jekyll/paginate/content/pager.rb
67
- - lib/jekyll/paginate/content/paginator.rb
68
- - lib/jekyll/paginate/content/version.rb
63
+ - lib/jekyll-paginate-content.rb
64
+ - lib/jekyll-paginate-content/documentpage.rb
65
+ - lib/jekyll-paginate-content/generator.rb
66
+ - lib/jekyll-paginate-content/pager.rb
67
+ - lib/jekyll-paginate-content/paginator.rb
68
+ - lib/jekyll-paginate-content/version.rb
69
69
  - res/ajni-trail-p1.png
70
70
  - res/ajni-trail-p4.png
71
71
  - res/jpv2-trail.png
@@ -1,6 +0,0 @@
1
- require "jekyll/paginate/content/version"
2
-
3
- require "jekyll/paginate/content/generator"
4
- require "jekyll/paginate/content/documentpage"
5
- require "jekyll/paginate/content/pager"
6
- require "jekyll/paginate/content/paginator"