Sha256: 9050c143c1b852ad789ead56bcc31a821c0088e465500615b21693e0dc8680ae
Contents?: true
Size: 583 Bytes
Versions: 61
Compression:
Stored size: 583 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 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/jarib/childprocess/issues" super(message) end end end
Version data entries
61 entries across 59 versions & 14 rubygems