When I run the following command to load a spreadsheet document into memory... I get an incredibly long print out before my console allows me to issue the next command. It seems like it's mapping and printing out the whole spreadsheet when the rows method is called.
session = GoogleDrive::Session.from_service_account_key("config/google_config.json")
ws = session.spreadsheet_by_key("XXXXXXXXXXX").worksheets[0]
rows = ws.rows
It takes a few minutes for a 10mb spreadsheet to finish running the .row command.
Am I doing something wrong or is this likely a bug in the gem?
When I run the following command to load a spreadsheet document into memory... I get an incredibly long print out before my console allows me to issue the next command. It seems like it's mapping and printing out the whole spreadsheet when the rows method is called.
It takes a few minutes for a 10mb spreadsheet to finish running the .row command.
Am I doing something wrong or is this likely a bug in the gem?