Commit f1f4a20733d75697f72ca532c3d3f109cc68c18f

Fix bug with timestamps. Seen at http://gist.github.com/43755
  
167167 self.attributes = self.class.params_from_atom(entry)
168168
169169 if respond_to?(:created_at)
170 self.created_at = entry.published
170 self.created_at = Time.parse(entry.published.to_s)
171171 end
172172
173173 if respond_to?(:updated_at)
174 self.updated_at = entry.updated
174 self.updated_at = Time.parse(entry.updated.to_s)
175175 end
176176
177177 if respond_to?(:author)