tinyatom 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/tinyatom/feed.rb +2 -2
- data/tinyatom.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/tinyatom/feed.rb
CHANGED
@@ -44,7 +44,7 @@ module TinyAtom
|
|
44
44
|
xm.title(e[:title])
|
45
45
|
xm.link(:href => e[:link])
|
46
46
|
xm.id(entry_id(e))
|
47
|
-
xm.updated(e[:updated])
|
47
|
+
xm.updated(e[:updated].xmlschema)
|
48
48
|
xm.summary(e[:summary]) if e[:summary]
|
49
49
|
xm.content(e[:content]) if e[:content]
|
50
50
|
|
@@ -79,7 +79,7 @@ module TinyAtom
|
|
79
79
|
def author(markup, h)
|
80
80
|
if h[:author_name]
|
81
81
|
markup.author {
|
82
|
-
markup.name(h[:author_name])
|
82
|
+
markup.name(h[:author_name])
|
83
83
|
markup.email(h[:author_email]) if h[:author_email]
|
84
84
|
markup.uri(h[:author_uri]) if h[:author_uri]
|
85
85
|
}
|
data/tinyatom.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tinyatom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Matthew M. Boedicker
|