Created
September 22, 2016 19:24
-
-
Save kjlape/a3cff59b68672b176bcd6aab3abd16b6 to your computer and use it in GitHub Desktop.
Rails CSV One-liner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ([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