Skip to content

Instantly share code, notes, and snippets.

@olivernn
Created March 4, 2011 16:20
Show Gist options
  • Save olivernn/854903 to your computer and use it in GitHub Desktop.
Save olivernn/854903 to your computer and use it in GitHub Desktop.
class Admin::ReportsController < AdminController
respond_to :csv
def trips
respond_with TripReport.new
end
end
class TripReport
# ...
def to_csv
# returns a csv string
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment