method

join_tags

join_tags(post)
public

No documentation available.

# File railties/guides/code/getting_started/app/helpers/posts_helper.rb, line 2
  def join_tags(post)
    post.tags.map { |t| t.name }.join(", ")
  end