I\'m new to rails, and just found the simple_form gem. I installed it with bootstrap suport, but now I can\'t get this code to work the way I want it
<%=
In simple_form 3.0rc use :button button type (it passes your block to original ActiveView button helper):
<%= f.button :button do %> Commit <% end %>
Or write additional button wrapper.
For additional info look into simple_form/form_builder.rb FormBuilder#button method.