jabe 0.5.5 → 0.5.6
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.6
|
@@ -6,7 +6,11 @@ atom_feed do |feed|
|
|
6
6
|
@entries.each do |post|
|
7
7
|
feed.entry(post) do |entry|
|
8
8
|
entry.title h post.title
|
9
|
-
entry.
|
9
|
+
entry.content post.body, :type => 'html'
|
10
|
+
|
11
|
+
entry.author do |author|
|
12
|
+
author.name(SETTINGS.site_name)
|
13
|
+
end
|
10
14
|
end
|
11
15
|
end
|
12
16
|
end
|
@@ -49,6 +49,6 @@ Then /^I should see the entries in the feed$/ do
|
|
49
49
|
:per_page => (SETTINGS.entries_per_page || 5)
|
50
50
|
).each_with_index do |entry, idx|
|
51
51
|
entries[idx].css('title').text.should eql(entry.title)
|
52
|
-
entries[idx].css('
|
52
|
+
entries[idx].css('content').text.should eql(entry.body)
|
53
53
|
end
|
54
54
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jabe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 6
|
10
|
+
version: 0.5.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Moen a.k.a. UnderpantsGnome
|