Rails 4 button_to
<%= button_to 'Send', {:controller => "feedback", :action => "send_feedback"}, class: "btn btn-success pull-right" %>
In API documentation i saw, that default behaviour for button_to is to send POST queries, but in log:
Started GET "/?name=%D0%98%D0%B3%D0%BE%D1%80%D1%8C&email=silend%40inbox.ru&text=ghfhfg&authenticity_token=MbPeULaBSsjRmf1415AUfwQOLl5%2FkpOUzbOyJnBRMXa7%2Fgi6yyoTn8kSsVR3sFEkVxMH%2FN%2FfDEFfwWpN%2Bjc5NA%3D%3D"
In routes.rb:
post "feedback/send_feedback" => "feedback#send_feedback"
Everything works fine when i add "formmethod = post" in result html inside browser, but how to change it with rails?