I'm pretty new to Rails 3, and I'm trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look like?
Thanks!
|
I'm pretty new to Rails 3, and I'm trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look like? Thanks! |
||||
|
|
|
Auto_discovery_link_tag is a good start. A quick Google search and I found blog posts on How to Create an RSS feed in Rails. Let me fill you in on what your associated controller/action is supposed to look like: controllers/posts_controller.rb
The name of this file should match the controller. See, below: views/posts/feed.rss.builder
This is where all the Railsy magic happens. Here, the RSS feed XML is generated and returned to HTTP. |
|||||||||||||||||
|
|
Using the auto_discovery_link_tag: In the controller:
|
|||||
|