Sha256: 970169653c3e2389535c7319bd88410f6403f17b5c21a1abf1316e28b1705e75
Contents?: true
Size: 399 Bytes
Versions: 10
Compression:
Stored size: 399 Bytes
Contents
require "delegate" require "shellwords" # Aruba module Aruba # Platforms module Platforms # This is a command which should be run # # @private class UnixCommandString def initialize(command, *arguments) @command = command @arguments = arguments end # Convert to array def to_a [@command, *@arguments] end end end end
Version data entries
10 entries across 10 versions & 3 rubygems