Method: Pathname#chdir

Defined in:
lib/standard/facets/pathname/chdir.rb

#chdir(&block) ⇒ Object

Change current working directory of the process to the given path

See Dir.chdir

CREDIT: Ryan Duryea



10
11
12
# File 'lib/standard/facets/pathname/chdir.rb', line 10

def chdir(&block)
  Dir.chdir(self, &block)
end