Exception: ChildProcess::MissingPlatformError

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

Instance Method Summary collapse

Constructor Details

#initializeMissingPlatformError

Returns a new instance of MissingPlatformError.



29
30
31
32
33
34
# File 'lib/childprocess/errors.rb', line 29

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/enkessler/childprocess/issues"

  super(message)
end