Module: LogCabin::Modules::Chdir

Defined in:
lib/prospectus/helpers/chdir.rb

Overview

Change directory before running module

Instance Method Summary collapse

Instance Method Details

#chdir_helperObject



6
7
8
9
# File 'lib/prospectus/helpers/chdir.rb', line 6

def chdir_helper
  @dir ||= '.'
  Dir.chdir(@dir) { yield }
end