19 lines
353 B
Ruby
19 lines
353 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module TmpdirHelper
|
||
|
def mktmpdir
|
||
|
@tmpdir_helper_dirs ||= []
|
||
|
@tmpdir_helper_dirs << Dir.mktmpdir
|
||
|
@tmpdir_helper_dirs.last
|
||
|
end
|
||
|
|
||
|
def self.included(base)
|
||
|
base.after do
|
||
|
if @tmpdir_helper_dirs
|
||
|
FileUtils.rm_rf(@tmpdir_helper_dirs)
|
||
|
@tmpdir_helper_dirs = nil
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|