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

Version Path
childprocess-0.5.6 lib/childprocess/errors.rb
childprocess-0.5.5 lib/childprocess/errors.rb
childprocess-0.5.4 lib/childprocess/errors.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/childprocess-0.5.3/lib/childprocess/errors.rb
childprocess-0.5.3 lib/childprocess/errors.rb
childprocess-0.5.2 lib/childprocess/errors.rb
childprocess-0.5.1 lib/childprocess/errors.rb
childprocess-0.5.0 lib/childprocess/errors.rb
childprocess-0.4.2 lib/childprocess/errors.rb
childprocess-0.4.1 lib/childprocess/errors.rb
childprocess-0.4.1.rc3 lib/childprocess/errors.rb
childprocess-0.4.1.rc2 lib/childprocess/errors.rb
childprocess-0.4.1.rc1 lib/childprocess/errors.rb
childprocess-0.4.0 lib/childprocess/errors.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/errors.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/errors.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/errors.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/childprocess-0.3.9/lib/childprocess/errors.rb
vagrant-shell-0.2.6 vendor/bundle/gems/childprocess-0.3.9/lib/childprocess/errors.rb
vagrant-shell-0.2.5 vendor/bundle/gems/childprocess-0.3.9/lib/childprocess/errors.rb