Skip to content

Instantly share code, notes, and snippets.

@lolgear
Created August 20, 2014 14:05
Show Gist options
  • Save lolgear/a033764ad4fbdf299b62 to your computer and use it in GitHub Desktop.
Save lolgear/a033764ad4fbdf299b62 to your computer and use it in GitHub Desktop.
class A
def relativePath(path)
self.relativePath(path,self.path)
end
def self.relativePath(path,to_path)
Pathname.new(path).relative_path_from(Pathname.new(to_path))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment