From af5993681d9e399ac19dc7bf1fe6851d66a1b8da Mon Sep 17 00:00:00 2001 From: David Bailey Date: Thu, 13 Apr 2023 09:57:11 +0200 Subject: [PATCH] refactor: add basic inspect TODO: Replace this with a better inspect that properly handles class names etc. --- lib/comfpile/artefact.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/comfpile/artefact.rb b/lib/comfpile/artefact.rb index 84c898d..85727ff 100644 --- a/lib/comfpile/artefact.rb +++ b/lib/comfpile/artefact.rb @@ -282,8 +282,11 @@ module Comfpile @running = false end - def to_s + def inspect "#" end + def to_s + inspect + end end end \ No newline at end of file