Sha256: 5ccddce1efab3f0735e630161e58b6ea48abdb4d99acb4ad7438ac60de551231

Contents?: true

Size: 446 Bytes

Versions: 2

Compression:

Stored size: 446 Bytes

Contents

# = icaprb/server/icapuri.rb
# Author:: Fabian Franz
#
# See URI for general documentation
#

require 'uri/generic'

module URI #:nodoc:

  # Class to represent ICAP URIs
  class ICAP < Generic
    # The ICAP default port is 1344
    DEFAULT_PORT = 1344
  end
  # Class to represent ICAP URIs
  class ICAPS < Generic
    # The ICAP default port is 11344
    DEFAULT_PORT = 11344
  end

  @@schemes['ICAP'] = ICAP
  @@schemes['ICAPS'] = ICAPS
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
icaprb-server-0.0.2 lib/icaprb/icapuri.rb
icaprb-server-0.0.1 lib/icaprb/icapuri.rb