Skip to content

Instantly share code, notes, and snippets.

@jodell
Created December 16, 2009 02:07
Show Gist options
  • Save jodell/257520 to your computer and use it in GitHub Desktop.
Save jodell/257520 to your computer and use it in GitHub Desktop.
file_ext.rb
# Core extension:
# Shortcut to a full file path
# ala: require File.pwd + '/some/other/file'
# Fixed naive, untested version per dradcliffe. Thanks!
class File
def self.pwd
self.expand_path(self.dirname(caller.first.split(':').first))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment