Sha256: 0925e81cbb3228d18816f5aab7e9daa7d8f5038380287424ebd29dd9af717576
Contents?: true
Size: 555 Bytes
Versions: 11
Compression:
Stored size: 555 Bytes
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ ActionController::Renderers.add :csv do |objects, options| filename = options[:filename] || controller_name || 'data' str = FatFreeCRM::ExportCSV.from_array(objects) send_data str, :type => :csv, :disposition => "attachment; filename=#{filename}.csv" end
Version data entries
11 entries across 11 versions & 1 rubygems