Sha256: 9833469e69a9d9b9da9ebbc1e8e93cc858c2d4db861a9e10a680eb90abfb7079

Contents?: true

Size: 1.69 KB

Versions: 68

Compression:

Stored size: 1.69 KB

Contents

# HTTPAccess2 - HTTP accessing library.
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi  <nakahiro@sarion.co.jp>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.

# http-access2.rb is based on http-access.rb in http-access/0.0.4.  Some
# part of it is copyrighted by Maebashi-san who made and published
# http-access/0.0.4.  http-access/0.0.4 did not include license notice but
# when I asked Maebashi-san he agreed that I can redistribute it under the
# same terms of Ruby.  Many thanks to Maebashi-san.


require 'httpclient'


module HTTPAccess2
  VERSION = ::HTTPClient::VERSION
  RUBY_VERSION_STRING = ::HTTPClient::RUBY_VERSION_STRING
  SSLEnabled = ::HTTPClient::SSLEnabled
  SSPIEnabled = ::HTTPClient::SSPIEnabled
  DEBUG_SSL = true

  Util = ::HTTPClient::Util

  class Client < ::HTTPClient
    class RetryableResponse < StandardError
    end
  end

  SSLConfig = ::HTTPClient::SSLConfig
  BasicAuth = ::HTTPClient::BasicAuth
  DigestAuth = ::HTTPClient::DigestAuth
  NegotiateAuth = ::HTTPClient::NegotiateAuth
  AuthFilterBase = ::HTTPClient::AuthFilterBase
  WWWAuth = ::HTTPClient::WWWAuth
  ProxyAuth = ::HTTPClient::ProxyAuth
  Site = ::HTTPClient::Site
  Connection = ::HTTPClient::Connection
  SessionManager = ::HTTPClient::SessionManager
  SSLSocketWrap = ::HTTPClient::SSLSocketWrap
  DebugSocket = ::HTTPClient::DebugSocket

  class Session < ::HTTPClient::Session
    class Error < StandardError
    end
    class InvalidState < Error
    end
    class BadResponse < Error
    end
    class KeepAliveDisconnected < Error
    end
  end
end

Version data entries

68 entries across 68 versions & 7 rubygems

Version Path
scout-5.8.5 vendor/httpclient/lib/http-access2.rb
scout-5.8.5.pre vendor/httpclient/lib/http-access2.rb
scout-5.8.4 vendor/httpclient/lib/http-access2.rb
scout-5.8.3 vendor/httpclient/lib/http-access2.rb
scout-5.8.1 vendor/httpclient/lib/http-access2.rb
scout-5.8.0 vendor/httpclient/lib/http-access2.rb
climine-0.0.3 vendor/bundle/ruby/2.0.0/gems/httpclient-2.3.4.1/lib/http-access2.rb
httpclient-jgraichen-2.3.4.2 lib/http-access2.rb
climine-0.0.2 vendor/bundle/ruby/2.0.0/gems/httpclient-2.3.4.1/lib/http-access2.rb
climine-0.0.1 vendor/bundle/ruby/2.0.0/gems/httpclient-2.3.4.1/lib/http-access2.rb
scout-5.8.0.pre vendor/httpclient/lib/http-access2.rb
scout-5.7.5 vendor/httpclient/lib/http-access2.rb
scout-5.7.4 vendor/httpclient/lib/http-access2.rb
scout-5.7.3.pre.2 vendor/httpclient/lib/http-access2.rb
scout-5.7.3.pre vendor/httpclient/lib/http-access2.rb
scout-5.7.2 vendor/httpclient/lib/http-access2.rb
scout-5.7.2.pre.2 vendor/httpclient/lib/http-access2.rb
scout-5.7.2.pre vendor/httpclient/lib/http-access2.rb
httpclient-2.3.4.1 lib/http-access2.rb
httpclient-2.3.4 lib/http-access2.rb