module Guard::Internals::Helpers

def _relative_pathname(path)

def _relative_pathname(path)
  full_path = Pathname(path)
  full_path.relative_path_from(Pathname.pwd)
rescue ArgumentError
  full_path
end