Skip to content

Commit

Permalink
adds very noticeable :puts statement so we know which person we're on…
Browse files Browse the repository at this point in the history
… when exporting spreadsheet
  • Loading branch information
aceofbassgreg committed Jan 29, 2016
1 parent 74e52d8 commit 126a66a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/services/spreadsheet/exporter.rb
Expand Up @@ -52,6 +52,9 @@ def filename

def insert_rows
Person.order(:last).each do |person|
puts "\n\n\n********************\n\n\n"
puts "Inserting rows for #{person.name}"
puts "\n\n\n********************\n\n\n"
csv << Row.new(self, person).build
end
end
Expand Down

0 comments on commit 126a66a

Please sign in to comment.