- Add the following to
app/helpers/application_helper.rb
:
def external_link_to(name = nil, options = nil, html_options = nil, &block)
opts = { target: '_blank', rel: 'nofollow noopener' }
if block_given?
options ||= {}
options = options.merge(opts)
else
html_options ||= {}
html_options = html_options.merge(opts)