class Envirobly::Git::Unstaged

def dir_exists?(path)

def dir_exists?(path)
  Dir.exist? path
end

def file_content(path)

def file_content(path)
  File.read path
end

def file_exists?(path)

def file_exists?(path)
  File.exist? path
end

def initialize(working_dir: Dir.getwd)

def initialize(working_dir: Dir.getwd)
  @working_dir = working_dir
end