I have this piece of code:
<%= link_to \"New User\", new_user_path, :class => \"button\" %>
which works fine, but when I
Instead of forcing button_to to use a non-default method, you can also send a class to link_to.
<%= link_to "New User", new_user_path, :class => "button" %>