Skip to content

mobalean/csv_import

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CsvImport

This Rails plugin provides a controller method called each_csv_row and an accompanying helper called csv_form.

By default, when each_csv_row is called, any exceptions raised in the block will be rescued. The rows that triggered the exceptions will then be displayed in a table as part of the output from csv_form.

You can turn off rescuing by calling each_csv_row(false).

Note that we have adapted this version to our needs for Doorkeeper, and we welcome any additions to make it more generic.

ドアキーパーでも利用するので、日本語対応もできます!

Compatibility

  • Ruby 1.9
  • Rails 3

Usage

# app/controllers/members_controller.rb

class MembersController < ActionController::Base
  include CsvImport

  def create
    each_csv_row do |row|
      Member.create!(row)
    end
  end
end

# app/views/members/index.html.erb

<h1>Import Members</h1>

<%= csv_form members_path do %>

  <!-- whatever you put in the optional
  block will appear at the end of the form -->
<% end %>

About

Easy CSV importing in Rails

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%