Commit 865457b

mo khan <mo@mokhan.ca>
2026-01-22 05:36:08
refactor: extract class to generate a system prompt using ERB
1 parent a534aa3
Changed files (1)
lib
elelem
builtins
lib/elelem/builtins/verify.rb
@@ -4,6 +4,7 @@ module Elelem
   module Verifiers
     SYNTAX = {
       ".rb" => "ruby -c %{path}",
+      ".erb" => "erb -x %{path} | ruby -c",
       ".py" => "python -m py_compile %{path}",
       ".go" => "go vet %{path}",
       ".rs" => "cargo check --quiet",