octopress-feeds 2.0.0 → 2.0.1

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: 52583357f6da6f89fb7d5974c8d2382b5ab050cf
4
- data.tar.gz: 65dc6fe839ea957e2727745d45c0a724664fd92f
3
+ metadata.gz: c15bfbb0d220cffe45127816eeab17c88796d34f
4
+ data.tar.gz: 80233babe1b7a350b97ac05b419f36b63c464317
5
5
  SHA512:
6
- metadata.gz: 0cf5c9ca9cd3cc6d0e167fe74767a506b2d548f087a744b836225ed9fc842404b416d7add85a761f80ff4baaa72048a0287c2b72075c124c558fb79b5ec2e860
7
- data.tar.gz: 0a22283867b34054f4198ddf30a13477acce3c16092a42773b0b5d10da00b1ddf367db8e0ff058f0160a42d7f1764bc5c03f68d2469ad687906bf32f9dabc0cf
6
+ metadata.gz: fbd8c8a096272c3f832c37fa10deb497c2f90e346f3538c032b1b4d12aab1e26c7278ff3c2c508344ec22de83f4a623c43cd4607d9bd8c401c3fbadba531d488
7
+ data.tar.gz: d459e98b991c1b26ef3c2f9386794337477bd72372449455ae3a560715610e7276fa9c12e8e0944f723e2c175b0aa98e501f51ed049c45a5b429553231dbb048
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ### 2.0.0 (2015-02-20)
3
+ ### 2.0.1 (2015-03-04)
4
+ - Fix: Feeds blew up if site author was not configured
5
+
6
+ ### 2.0.0 (2015-03-04)
4
7
  - New: Feeds for each post tag (or configure specific tags).
5
8
  - Now integrated with Octopress Ink's plugin bootstrap.
6
9
  - Some configurations have changed, see Readme for details.
@@ -8,10 +8,10 @@
8
8
  <id>{{ post.id }}</id>
9
9
  <published>{{ post.date_xml }}</published>
10
10
  <updated>{% return post.date_updated_xml || post.date_xml %}</updated>
11
- <author>
11
+ {% if post.author || site.author %}<author>
12
12
  <name>{% return post.author || site.author %}</name>
13
13
  <uri>{% if post.author_site %}{{ post.author_site }}{% else %}{{ site.url | join_url: site.baseurl }}{% endif %}</uri>
14
- </author>
14
+ </author>{% endif %}
15
15
  <content type="html" xml:base="{{ site.url | join_url: site.baseurl }}" {% if page.lang %}xml:lang="{{ page.lang }}"{% endif %}>
16
16
  <![CDATA[
17
17
  {% if plugins.feeds.excerpts == false or post.linkpost %}
@@ -7,4 +7,4 @@
7
7
  <updated>{% feed_updated %}</updated>
8
8
  <generator uri="http://octopress.org/">Octopress</generator>
9
9
  {% if page.lang %}<language>{{ page.lang }}</language>{% endif %}
10
- <rights>Copyright © {{ site.time | date: '%Y' }}, {{ site.author | strip_html }}</rights>
10
+ <rights>Copyright © {{ site.time | date: '%Y' }}, {% return site.author || site.url | strip_html %}</rights>
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Feeds
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-feeds
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-04 00:00:00.000000000 Z
11
+ date: 2015-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress-ink