refactor: add basic inspect

TODO: Replace this with a better inspect that properly handles class names etc.
This commit is contained in:
David Bailey 2023-04-13 09:57:11 +02:00
parent 493c04ac45
commit af5993681d

View file

@ -282,8 +282,11 @@ module Comfpile
@running = false
end
def to_s
def inspect
"#<Compfile::Artefact #{@stage} #{@target}>"
end
def to_s
inspect
end
end
end