Skip to content

Instantly share code, notes, and snippets.

@romaimperator
romaimperator / helper.rb
Last active December 16, 2015 18:29 — forked from excid3/helper.rb
def nav_link_to(title, url, options={})
li_options = {}
if matches_options?(options)
li_options[:class] = "active"
end
content_tag :li, li_options do
link_to title, url
end