# File 'lib/fun_with/files/root_path.rb', line 4defroot(*args,&block)ifargs.length>0args.unshift(@root_path)FilePath.new(*args,&block)elseFilePath.new(@root_path,&block)endend
#set_root_path(path) ⇒ Object
13
14
15
# File 'lib/fun_with/files/root_path.rb', line 13defset_root_path(path)@root_path=FunWith::Files::FilePath.new(path)end