Well, I actually figured this one out. Looking at the source, the AtomFeedHelper was grabbing the URL automatically from the record, which is wrong, since it's not stored anywhere in the record itself and the namespace is slightly different than rails conventions (blog_post_url instead of post_url). I was able to pass the URL parameter into the troublesome statement and it works now:
What was: feed.entry post do |entry| Is now: feed.entry(post, :url => blog_post_url(:title => post.url_title)) do |entry| Resolved! Thanks, - Jeff -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

