Sha256: 79c257ac0a3293432e5d06f9404f5fddea5e234ec7ad030c9144aa0129482428
Contents?: true
Size: 360 Bytes
Versions: 60
Compression:
Stored size: 360 Bytes
Contents
module Aix::File include Beaker::CommandFactory def tmpfile(name = '') execute("rndnum=${RANDOM} && touch /tmp/#{name}.${rndnum} && echo /tmp/#{name}.${rndnum}") end def tmpdir(name = '') execute("rndnum=${RANDOM} && mkdir /tmp/#{name}.${rndnum} && echo /tmp/#{name}.${rndnum}") end def path_split(paths) paths.split(':') end end
Version data entries
60 entries across 60 versions & 1 rubygems