Skip to content

Instantly share code, notes, and snippets.

@bricker
Created August 24, 2015 22:23
Show Gist options
  • Select an option

  • Save bricker/dfebb33870b45061c249 to your computer and use it in GitHub Desktop.

Select an option

Save bricker/dfebb33870b45061c249 to your computer and use it in GitHub Desktop.
module ApplicationHelper
def genre_list(game)
raw(game.genres[0..2].collect { |genre| link_to(genre.name, genre) }.join(", "))
end
end
<%= genre_list(@game) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment