I'm using Rails 3.1 and Twitter Bootstrap, but struggling to replicate <a class="btn btn-large" href="">Button!</a> with a rails helper.
With the CSS giving providing the 'button', I'm not sure whether I should be using link_to or button_to, but I DO know that neither of them are giving me the appropriately styled button.
I've tried a variety of combinations, for instance:
<%= button_to "Button!", :class => "btn btn-large" %>
How can I replicate my normal HTML link with a rails helper?