superfeedr-ruby 0.4.4 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +2 -2
- data/lib/stanzas/notification_stanza.rb +9 -0
- metadata +4 -4
data/VERSION.yml
CHANGED
@@ -123,6 +123,15 @@ class Item
|
|
123
123
|
@summary
|
124
124
|
end
|
125
125
|
|
126
|
+
def content
|
127
|
+
if !@content
|
128
|
+
if content = @node.at_xpath("./atom:entry/atom:content", {"atom" => "http://www.w3.org/2005/Atom"})
|
129
|
+
@content = content.text
|
130
|
+
end
|
131
|
+
end
|
132
|
+
@content
|
133
|
+
end
|
134
|
+
|
126
135
|
def unique_id
|
127
136
|
@unique_id ||= @node.at_xpath("./atom:entry/atom:id", {"atom" => "http://www.w3.org/2005/Atom"}).text
|
128
137
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: superfeedr-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
version: 0.5.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- julien Genestoux
|