Class: File

Inherits:
Object show all
Defined in:
lib/el4r/el4r-sub.rb

Overview

change_home

Class Method Summary collapse

Class Method Details

.change_home(dir) ⇒ Object



705
706
707
708
709
710
711
712
713
# File 'lib/el4r/el4r-sub.rb', line 705

def self.change_home(dir)
  oldhome = ENV['HOME']
  begin
    ENV['HOME'] = dir
    yield(dir)
  ensure
    ENV['HOME'] = oldhome
  end
end