Module: Pikuri::Code::Bash::Sandbox::NONE

Defined in:
lib/pikuri/code/bash/sandbox.rb

Overview

Identity sandbox — passthrough. Default for Bash.new, used when the host opts out via --no-sandbox / --yolo, and the natural baseline for tests and any non-coding binary that invokes Pikuri::Code::Bash directly.

Class Method Summary collapse

Class Method Details

.wrap(argv) ⇒ Array<String>

Returns argv unchanged.

Parameters:

  • argv (Array<String>)

Returns:

  • (Array<String>)

    argv unchanged



45
46
47
# File 'lib/pikuri/code/bash/sandbox.rb', line 45

def self.wrap(argv)
  argv
end