Commit 2e7e65c

mo khan <mo@mokhan.ca>
2026-01-22 05:36:08
refactor: extract class to generate a system prompt using ERB
1 parent 5644f05
Changed files (1)
lib
elelem
lib/elelem/tools/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",