Exception: ChildProcess::MissingFFIError

Inherits:
Error
  • Object
show all
Defined in:
lib/childprocess/errors.rb

Instance Method Summary collapse

Constructor Details

#initializeMissingFFIError

Returns a new instance of MissingFFIError.



18
19
20
21
22
23
24
# File 'lib/childprocess/errors.rb', line 18

def initialize
  message = "FFI is a required pre-requisite for Windows or posix_spawn support in the ChildProcess gem. " +
            "Ensure the `ffi` gem is installed. " +
            "If you believe this is an error, please file a bug at http://github.com/enkessler/childprocess/issues"

  super(message)
end