feat: begin the repo a bit late but better than never

This commit is contained in:
David Bailey 2023-04-03 22:36:01 +02:00
commit 607159334b
22 changed files with 898 additions and 0 deletions

View file

@ -0,0 +1,16 @@
module Comfpile
class Sourcefile
attr_reader :full_path, :local_path, :resource_location
def initialize(resource_location, full_path, local_path)
@resource_location = resource_location
@full_path = full_path
@local_path = local_path
end
def to_s
@full_path
end
end
end