class ChildProcess::MissingPlatformError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/childprocess/errors.rb, line 18
def initialize
  message = "posix_spawn is not yet supported on #{ChildProcess.platform_name} (#{RUBY_PLATFORM}), falling back to default implementation. " +
            "If you believe this is an error, please file a bug at http://github.com/jarib/childprocess/issues"

  super(message)
end