class ChildProcess::MissingFFIError

Public Class Methods

new() click to toggle source
Calls superclass method
# 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