Sha256: 5f5c3d2897fb83cc07d99d5b9952e86e0e1b1b921169828f8ee04fb965a288c3
Contents?: true
Size: 593 Bytes
Versions: 13
Compression:
Stored size: 593 Bytes
Contents
# frozen_string_literal: true # 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
13 entries across 13 versions & 1 rubygems