I trying to use Bourbon neat refills in a Rails 4.1 project
My Rail Menu item would look like this:
<li class="nav-link">
<%= link_to 'New Household', new_households_path %>
</li>
The Bourbon refills example is like this:
<li class="nav-link">
<a href="javascript:void(0)">New Household</a>
</li>
I don’t understand how to make this work - Is there an example of using th Bourbon / Refills menu system in a Rails project?