jekyll-stickyposts 1.2.1 → 1.2.2

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: be51434121b3596109ea4476f0c9b24cfa5bd503
4
- data.tar.gz: f14b96fddc2097c5b25a196ed63f7ce60b43dddb
3
+ metadata.gz: b16fb12c8f7c8895940b184ab015d3c0aa76af54
4
+ data.tar.gz: 41f27cde1813b8aafcbe2286c952cc3b4c13b741
5
5
  SHA512:
6
- metadata.gz: 7efbd0f07966d7ce235825562692c041f67a228c03c3c1923361642d1efd05bd598260bf2581f97485a92d679bcbbd3fdb14b5c0370c7d08a9a3e723a99f048d
7
- data.tar.gz: 45080989ab2ef724fe13eadf0b34c64f26b32c82493dc3a232e023be6575f9b6606fb5c557a9765f704c4aa7ceace1b38ca3f52668d215a249853b30517c523e
6
+ metadata.gz: 3b906b54692a8db95effbe4f5f55e948ed9a85b58c457d5dc1f84ec57d5c119c58ca87ce478c1ec80cd4acc7b0bddaf7793f98b65e8ff8a3ea7fd967d6343723
7
+ data.tar.gz: b7c9289a6356a8a311f21947bdf2a90cdfde7661fbc658ddcbd4b3d66d637c1bfb76b52608f95460c15cc10b737fd603c08a9c99c19e6f45933ad628106180b1
data/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
 
12
12
  ## What's new?
13
13
 
14
+ *v1.2.1* Fix sorting
15
+
14
16
  *v1.2.0* Add `reverse_sticky` option
15
17
 
16
18
  *v1.1.0* Support multiple collections
@@ -149,7 +151,7 @@ See the [author's blog](https://ibrado.org/) for a (possible) demo.
149
151
  1. Commit your changes (`git commit -m "Bug fix"`)
150
152
  1. Build it (`gem build jekyll-stickyposts.gemspec`)
151
153
  1. Install and test it (`gem install ./jekyll-stickyposts-*.gem`)
152
- 1. Repeat from step 3 as necessary
154
+ 1. Repeat from step 5 as necessary
153
155
  1. Push the branch (`git push -u origin my-bug-fix`)
154
156
  1. Create a Pull Request, making sure to select the proper branch, e.g. `my-bug-fix` (via https://github.com/*your_user_name*/jekyll-stickyposts)
155
157
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "jekyll/stickyposts"
4
+ require "jekyll-stickyposts"
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/stickyposts/version"
4
+ require "jekyll-stickyposts/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "jekyll-stickyposts"
@@ -1,4 +1,4 @@
1
- require "jekyll/stickyposts/version"
1
+ require "jekyll-stickyposts/version"
2
2
 
3
3
  module Jekyll
4
4
  module StickyPosts
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module StickyPosts
3
- VERSION = "1.2.1"
3
+ VERSION = "1.2.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-stickyposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Ibrado
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-22 00:00:00.000000000 Z
11
+ date: 2018-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -59,8 +59,8 @@ files:
59
59
  - bin/console
60
60
  - bin/setup
61
61
  - jekyll-stickyposts.gemspec
62
- - lib/jekyll/stickyposts.rb
63
- - lib/jekyll/stickyposts/version.rb
62
+ - lib/jekyll-stickyposts.rb
63
+ - lib/jekyll-stickyposts/version.rb
64
64
  homepage: https://github.com/ibrado/jekyll-stickyposts
65
65
  licenses:
66
66
  - MIT