Sha256: 91eb27bba004d25528927a4265bdff5a59d50990f009d568154d5117b25817b8

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

Contents

require 'uri'

require 'http/parser'
require 'http'
require 'celluloid/io'

require 'reel/version'
require 'reel/mixins'
require 'reel/connection'
require 'reel/logger'
require 'reel/request'
require 'reel/response'

require 'reel/server'
require 'reel/server/http'
require 'reel/server/https'

require 'reel/websocket'
require 'reel/stream'

# A Reel good HTTP server
module Reel
  # Error reading a request
  class RequestError < StandardError; end

  # Error occurred performing IO on a socket
  class SocketError < RequestError; end

  # Error occurred when trying to use the socket after it was upgraded
  class SocketUpgradedError < NilClass
    def self.method_missing(m, *)
      raise(Reel::RequestError, 'Reel::Connection#socket can not be used anymore as it was upgraded. Use Reel::WebSocket instance instead.')
    end
  end

  # Error occured during a WebSockets handshake
  class HandshakeError < RequestError; end

  # The method given was not understood
  class UnsupportedMethodError < ArgumentError; end

  # wrong state for a given operation
  class StateError < RuntimeError; end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
reel-0.6.1 lib/reel.rb
reel-0.6.0 lib/reel.rb
reel-0.5.0 lib/reel.rb
reel-0.5.0.pre lib/reel.rb