Chris Ostrowski

Results 3 issues of Chris Ostrowski

I started working on a direct [port](https://github.com/TheKidCoder/Arel.cr) of AREL (A Relational Algebra) for building SQL queries using an AST. I mainly started it as an experiment to see what it...

When trying to load up a file that had spaces in the directory path, FFMpeg was throwing errors. Threw in a quick gsub method to add an escape slash.

In 0.4.4: ``` ruby Group.where(name: "Universal Questions").find_forest ``` will generate the following SQL: ``` sql WITH RECURSIVE "all_nodes" AS ( SELECT "prompts"."id", "prompts"."parent_id" FROM "prompts" WHERE "prompts"."type" IN ('Group') AND...