Sha256: 68845de96b8724e58ee30eceefbd7cbb54600fad7c79760adc5e5aecebd19586
Contents?: true
Size: 562 Bytes
Versions: 15
Compression:
Stored size: 562 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
15 entries across 15 versions & 2 rubygems