access rails url helper from deface
问题 I am including Spree to an existing site. I am changing the spree header with Deface to render my site's header instead. Therefore I use the following Deface DSL code <!-- replace_contents "header[data-hook]" --> <%= render :partial => "layouts/my_site_header.html.erb" %> And inside _my_site_header.html.erb I have something like this <ul> <li><%= link_to "Home", home_path %></li> <li><%= link_to "Game", game_path %></li> <li><%= link_to "Community", community_path %></li> </ul> Which gives me