ruby-rcade/RubyGameDev.com

View on GitHub
app/helpers/post_location_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PostLocationHelper
  def link_to_post(post)
    if post.external_post?
      link_to(post.title, post.source_url, target: '_blank')
    else
      link_to(post.title, post_path(post))
    end
  end
end