I need to duplicate a record, with the same attributes of the original except ID of cource. I do:
In the View:
<%= link_to "Duplicate", :action => "clone", :id => Some_Existing_ID %>
And in the Controller:
def clone
  @item = Item.find(params[:id]).clone
  if @item.save
    flash[:notice] = 'Item was successfully cloned.'
  else
    flash[:notice] = 'ERROR: Item can\'t be cloned.'
  end
  redirect_to(items_path)
end      
But nothing happens! In Console I figured out that clone generates the copy without ID.
Any ideas ?
*> BTW: I am running Rails 2.3.5 and Ruby 1.8