Sha256: 659f311dbc4721bb23c0c2454cff4a185d627ec2d4abbec603c4954c625d40d4
Contents?: true
Size: 614 Bytes
Versions: 55
Compression:
Stored size: 614 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/enkessler/childprocess/issues" super(message) end end end
Version data entries
55 entries across 41 versions & 5 rubygems