Sha256: b7b08d4e8669d0a4988abf05661f0e2e0fcc2bbb507301d98391437b6e16c11f
Contents?: true
Size: 595 Bytes
Versions: 25
Compression:
Stored size: 595 Bytes
Contents
[ 'host', 'command_factory', 'command', 'options' ].each do |lib| require "beaker/#{lib}" end module Unix class Host < Beaker::Host [ 'user', 'group', 'exec', 'pkg', 'file' ].each do |lib| require "beaker/host/unix/#{lib}" end include Unix::User include Unix::Group include Unix::File include Unix::Exec include Unix::Pkg def platform_defaults h = Beaker::Options::OptionsHash.new h.merge({ 'user' => 'root', 'group' => 'root', 'pathseparator' => ':', }) end end end
Version data entries
25 entries across 25 versions & 1 rubygems