shinmun 0.9.1 → 0.9.2
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/.gems +1 -1
- data/lib/shinmun/routes.rb +1 -1
- data/lib/shinmun.rb +0 -2
- data/templates/index.rxml +7 -7
- metadata +2 -2
data/.gems
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
shinmun --version 0.9
|
|
1
|
+
shinmun --version 0.9.2
|
data/lib/shinmun/routes.rb
CHANGED
data/lib/shinmun.rb
CHANGED
data/templates/index.rxml
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
<language><%= @blog.language %></language>
|
|
8
8
|
<copyright><%= @blog.author %></copyright>
|
|
9
9
|
<pubDate><%= rfc822 Time.now %></pubDate>
|
|
10
|
-
<% for post in @
|
|
10
|
+
<% for post in @posts %>
|
|
11
11
|
<item>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
<title><%= post.title %></title>
|
|
13
|
+
<category><%= post.category %></category>
|
|
14
|
+
<description><%= strip_tags post.summary %></description>
|
|
15
|
+
<author><%= @blog.author %></author>
|
|
16
|
+
<link><%= @blog.url %><%= post_path post %></link>
|
|
17
|
+
<pubDate><%= rfc822 post.date %></pubDate>
|
|
18
18
|
</item>
|
|
19
19
|
<% end %>
|
|
20
20
|
</channel>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shinmun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthias Georgi
|
|
@@ -60,7 +60,7 @@ dependencies:
|
|
|
60
60
|
requirements:
|
|
61
61
|
- - ">="
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: 0.3.
|
|
63
|
+
version: 0.3.3
|
|
64
64
|
version:
|
|
65
65
|
description: git-based blog engine.
|
|
66
66
|
email: matti.georgi@gmail.com
|