Sha256: ec77be45b2efc2c4a2bfb03c0c4e25bd4660ccfa6f4393277c963181d1f5a7f6
Contents?: true
Size: 659 Bytes
Versions: 10
Compression:
Stored size: 659 Bytes
Contents
module ChildProcess class Error < StandardError; end class TimeoutError < StandardError; end class SubclassResponsibility < StandardError; end class InvalidEnvironmentVariable < StandardError; end class LaunchError < StandardError; end class MissingPlatformError < StandardError def initialize platform = ChildProcess.platform_name 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
10 entries across 10 versions & 3 rubygems