Sha256: f2cded79d3841c67f076bead4a0ca6a3bba8fe13d4b8a5079c8985e11699d366
Contents?: true
Size: 966 Bytes
Versions: 41
Compression:
Stored size: 966 Bytes
Contents
module ChildProcess class Error < StandardError end class TimeoutError < Error end class SubclassResponsibility < Error end class InvalidEnvironmentVariable < Error end class LaunchError < Error end class MissingFFIError < Error 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 end class MissingPlatformError < Error 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 end end
Version data entries
41 entries across 29 versions & 7 rubygems