Hey @Jonathan_Stockl
When utilizing table names with spaces, the Airtable Ruby gem in a ruby app appears to be giving you problems. You noted that adding '%20' in place of the room wasn't helpful either.
Your code suggests that you have initialized the Airtable client and table objects appropriately. The way you send the table name to the 'client.table' function may need to be changed, though.
Try using 'Test Table' instead of '"'Test Table'"' without any other quotes or special characters:
table = client.table("APP_ID", 'Test Table')
Without any extra encoding, the table name should just be a standard text. Any required encoding should be handled internally by the gem.
If the problem continues, there could be a bug in the gem itself. The appropriate action was to create an issue on the GitHub repository. The problem may be examined by the gem's maintainers, who can then offer assistance or address it in a subsequent version.
Keep in mind to provide any pertinent information on the issue, such as the gem version you're running and any error messages or stack traces you've seen. The maintainers will be better able to comprehend and solve the issue as a result.
Hopefully, the people that look after the gem will be able to help you further and offer a solution.