Button_to usa POST Link_to usa GET, por quê? ROR

Eu encontrei um problema ror usando o link_to. Por que meu link para usar o método GET e meu botão_para usar o método POST, depois de especificar meu "método" => "postar" dentro dos parâmetros link_to?

Visão:

<%= button_to "pdf", :action => 'getquote' %>
<%= link_to 'pdf', {:controller => 'inventories', :action => 'getquote', :method => :post } %>

Método do Controlador:

def getquote
@cart = find_cart
respond_to do |format|
format.pdf
end
end

Saída do terminal (botão / link, respectivamente):

Processing InventoriesController#getquote (for 127.0.0.1 at 2010-01-30 01:38:02) [POST]
  Parameters: {"action"=>"getquote", "authenticity_token"=>"D2cwnHyTHgomdUM3wXBBXlOe4NQLmv1Srn0paLbExpQ=", "controller"=>"inventories"}

Processing InventoriesController#show (for 127.0.0.1 at 2010-01-30 01:39:07) [GET]
  Parameters: {"method"=>"post", "action"=>"show", "id"=>"getquote", "controller"=>"inventories"}

questionAnswers(3)

yourAnswerToTheQuestion