tinyatom 0.1.0 → 0.1.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
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]) if 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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tinyatom}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Matthew M. Boedicker"]
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: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthew M. Boedicker