Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created September 22, 2016 19:24
Show Gist options
  • Select an option

  • Save kjlape/a3cff59b68672b176bcd6aab3abd16b6 to your computer and use it in GitHub Desktop.

Select an option

Save kjlape/a3cff59b68672b176bcd6aab3abd16b6 to your computer and use it in GitHub Desktop.
Rails CSV One-liner
([headers = %i(some headers here)] + SomeModel.where(condition: :state).pluck(*headers)).each { |row| puts row.join ', ' }; nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment