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 posix_spawn, falling back to default implementation. " +
            "Please add it to your deployment to unlock this functionality. " +
            "If you believe this is an error, please file a bug at http://github.com/enkessler/childprocess/issues"

  super(message)
end