I have just completed the introduction guide to RoR: http://guides.rubyonrails.org/getting_started.html. It's a great guide and everything works.
I am trying to extend it a little bit by SHOWING tags in the Post view. (The guide sets it up so that you can add tags while adding a post even though Tag and Post are different models).
This is probably something simple, I just don't know how to do it or find this specific information.
For what it's worth:
<p>
<b>Tags:</b>
<%=h @post.tags %>
</p>
Shows this:
Tags: [#<Tag id: 2, name: "Awesome", post_id: 2, created_at: "2010-02-23 23:53:42", updated_at: "2010-02-23 23:53:42">]