Skip to content

Instantly share code, notes, and snippets.

@Zhann
Created October 4, 2013 10:15
Show Gist options
  • Save Zhann/6823823 to your computer and use it in GitHub Desktop.
Save Zhann/6823823 to your computer and use it in GitHub Desktop.
if RUBY_VERSION =~ /^1\.8/
class Dir
class << self
def exists? (path)
File.directory?(path)
end
alias_method :exist?, :exists?
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment