jekyll-tagging 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/lib/jekyll/tagging.rb +2 -2
- data/lib/jekyll/tagging/version.rb +1 -1
- metadata +7 -7
data/ChangeLog
CHANGED
data/lib/jekyll/tagging.rb
CHANGED
@@ -21,8 +21,8 @@ module Jekyll
|
|
21
21
|
# A <tt>tag_page_layout</tt> have to be defined in your <tt>_config.yml</tt>
|
22
22
|
# to use this.
|
23
23
|
def generate_tag_pages(site)
|
24
|
-
site.tags.each { |
|
25
|
-
site.pages << new_tag_page(site, site.source, @tag_page_dir,
|
24
|
+
site.tags.each { |tag, posts|
|
25
|
+
site.pages << new_tag_page(site, site.source, @tag_page_dir, tag, posts.sort.reverse)
|
26
26
|
}
|
27
27
|
end
|
28
28
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-tagging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Arne Eilermann
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-11-26 00:00:00 +01:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -56,13 +56,13 @@ licenses: []
|
|
56
56
|
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options:
|
59
|
+
- --title
|
60
|
+
- jekyll-tagging Application documentation
|
59
61
|
- --line-numbers
|
60
62
|
- --inline-source
|
63
|
+
- --all
|
61
64
|
- --charset
|
62
65
|
- UTF-8
|
63
|
-
- --title
|
64
|
-
- jekyll-tagging Application documentation
|
65
|
-
- --all
|
66
66
|
require_paths:
|
67
67
|
- lib
|
68
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|