jekyll-feed 0.2.0 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/jekyll-feed.gemspec +1 -1
  3. data/lib/feed.xml +2 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14ee44b7a02f6709b95e9266a5e3b56d36ac065d
4
- data.tar.gz: 25ea1ebdaf2ae8f7a5993726e9e73402b96a1136
3
+ metadata.gz: e139aaf84006d6110f88c43f380726b3028c66ed
4
+ data.tar.gz: 21d552974a24f198dcec3eb22c4b831dd08ea8ef
5
5
  SHA512:
6
- metadata.gz: f9a1af3d768c6d8c921c11d3eb71205119b8b01e9569ca2f3697ee2f2c8f38c3e73cf9f7857b52fec581da487bd022499deab2a0cbfa4ff212af15737e6d06f6
7
- data.tar.gz: 59435b91142b86809fd70e33b9293125e2a3e9ac28c789e0f735436ed4355e0a2d0378acf3fbad0148ce38a6b537e0f27af8d36bd728f297cdec78042c820c2d
6
+ metadata.gz: 6c371aeccdf1af970cc6ea6b4ea3eb7f50a52bb44df7c0a6a3f372740636b387ac4bcfa29f9576bd5a97a849bae4a5f41b53d43d875011c7d3c6e6ff171cbe9c
7
+ data.tar.gz: 1f3d406819b2b2f80171ed7476aeea135599593e0ba3362a17fdc99f4a86700c25ed3921be9f007c821b41d2e9659936e61fe49bfbdecbb9fe04567cfe103dce
data/jekyll-feed.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "jekyll-feed"
5
- spec.version = "0.2.0"
5
+ spec.version = "0.2.1"
6
6
  spec.authors = ["Ben Balter"]
7
7
  spec.email = ["ben.balter@github.com"]
8
8
  spec.summary = "A Jekyll plugin to generate an Atom feed of your Jekyll posts"
data/lib/feed.xml CHANGED
@@ -30,9 +30,7 @@
30
30
  <email>{{ site.author.email | xml_escape }}</email>
31
31
  {% endif %}
32
32
  {% if site.author.uri %}
33
- </uri>{{ site.author.uri | xml_escape }}</uri>
34
- {% elsif site.author.url %}
35
- </uri>{{ site.author.url | xml_escape }}</uri>
33
+ <uri>{{ site.author.uri | xml_escape }}</uri>
36
34
  {% endif %}
37
35
  </author>
38
36
  {% endif %}
@@ -62,9 +60,7 @@
62
60
  <email>{{ post.author.email | xml_escape }}</email>
63
61
  {% endif %}
64
62
  {% if post.author.url %}
65
- </uri>{{ post.author.url | xml_escape }}</uri>
66
- {% elsif post.author.url %}
67
- </uri>{{ post.author.url | xml_escape }}</uri>
63
+ <uri>{{ post.author.url | xml_escape }}</uri>
68
64
  {% endif %}
69
65
  </author>
70
66
  {% endif %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-feed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter