jekyll-tagging 0.3.0 → 0.3.1

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.
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.3.1 [2012-05-24]
2
+
3
+ * Added support for Jekyll::Site#add_payload (custom extension).
4
+
1
5
  == 0.3.0 [2012-02-03]
2
6
 
3
7
  * Feed per tag feature added.
data/README.rdoc CHANGED
@@ -83,7 +83,7 @@ RubyGem:: <http://rubygems.org/gems/jekyll-tagging>
83
83
 
84
84
  === The MIT License
85
85
 
86
- Copyright (c) 2010-2011 University of Cologne,
86
+ Copyright (c) 2010-2012 University of Cologne,
87
87
  Albertus-Magnus-Platz, 50923 Cologne, Germany
88
88
 
89
89
  Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -27,7 +27,8 @@ module Jekyll
27
27
  warn 'WARNING: You have to define a tag_page_layout in configuration file.'
28
28
  end
29
29
 
30
- site.config.update({ 'tag_data' => calculate_tag_cloud(site) })
30
+ t = { 'tag_data' => calculate_tag_cloud(site) }
31
+ site.respond_to?(:add_payload) ? site.add_payload(t) : site.config.update(t)
31
32
  end
32
33
 
33
34
  # Generates a page per tag and adds them to all the pages of +site+.
@@ -6,7 +6,7 @@ module Jekyll
6
6
 
7
7
  MAJOR = 0
8
8
  MINOR = 3
9
- TINY = 0
9
+ TINY = 1
10
10
 
11
11
  class << self
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tagging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-04-03 00:00:00.000000000 Z
13
+ date: 2012-05-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby-nuggets
17
- requirement: &70196087414680 !ruby/object:Gem::Requirement
17
+ requirement: !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -22,7 +22,12 @@ dependencies:
22
22
  version: '0'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *70196087414680
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: '0'
26
31
  description: Jekyll plugin to automatically generate a tag cloud and tag pages.
27
32
  email:
28
33
  - eilermann@lavabit.com
@@ -32,11 +37,11 @@ extensions: []
32
37
  extra_rdoc_files:
33
38
  - ChangeLog
34
39
  files:
35
- - lib/jekyll/tagging/version.rb
36
40
  - lib/jekyll/tagging.rb
41
+ - lib/jekyll/tagging/version.rb
42
+ - README.rdoc
37
43
  - ChangeLog
38
44
  - Rakefile
39
- - README.rdoc
40
45
  homepage: http://github.com/pattex/jekyll-tagging
41
46
  licenses: []
42
47
  post_install_message:
@@ -46,7 +51,7 @@ rdoc_options:
46
51
  - --line-numbers
47
52
  - --all
48
53
  - --title
49
- - jekyll-tagging Application documentation (v0.3.0)
54
+ - jekyll-tagging Application documentation (v0.3.1)
50
55
  - --main
51
56
  - ChangeLog
52
57
  require_paths:
@@ -65,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
70
  version: '0'
66
71
  requirements: []
67
72
  rubyforge_project:
68
- rubygems_version: 1.8.11
73
+ rubygems_version: 1.8.24
69
74
  signing_key:
70
75
  specification_version: 3
71
76
  summary: Jekyll plugin to automatically generate a tag cloud and tag pages.