Skip to content

Instantly share code, notes, and snippets.

@Dysp
Created June 15, 2016 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dysp/bd5a95bc82d77b603a4641c790fdb61a to your computer and use it in GitHub Desktop.
Save Dysp/bd5a95bc82d77b603a4641c790fdb61a to your computer and use it in GitHub Desktop.
def get_values(sheets)
sheets.flat_map do |sheet|
array = Array.new
array << sheet.flat_map do |row|
row ? row.cells.map { |cell| cell.value if cell } : []
end
return array
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment