The whole point of a paper clip is to save the file. You may have something like the following as your action and completely skip using a paper clip.
def upload CSV.parse(params[:file].read) do |row|
with this form:
<%= form_tag('/path/to/upload') do %> <%= file_field_tag :file %> <%= submit_tag %> <% end %>
source share