Sha256: a0452a7f973c716d1e81624914ac3d5e913c11fa22bbabf685721a8d2ee6355c

Contents?: true

Size: 1.03 KB

Versions: 78

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true
#
# prochandler.rb -- ProcHandler Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: prochandler.rb,v 1.7 2002/09/21 12:23:42 gotoyuzo Exp $

require_relative 'abstract'

module WEBrick
  module HTTPServlet

    ##
    # Mounts a proc at a path that accepts a request and response.
    #
    # Instead of mounting this servlet with WEBrick::HTTPServer#mount use
    # WEBrick::HTTPServer#mount_proc:
    #
    #   server.mount_proc '/' do |req, res|
    #     res.body = 'it worked!'
    #     res.status = 200
    #   end

    class ProcHandler < AbstractServlet
      # :stopdoc:
      def get_instance(server, *options)
        self
      end

      def initialize(proc)
        @proc = proc
      end

      def do_GET(request, response)
        @proc.call(request, response)
      end

      alias do_POST do_GET
      # :startdoc:
    end

  end
end

Version data entries

78 entries across 78 versions & 1 rubygems

Version Path
shopify-cli-2.2.1 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-2.2.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-2.1.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-2.0.2 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-2.0.1 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-2.0.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.14.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.13.1 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.13.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.12.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.11.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.10.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.9.1 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.9.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.8.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.7.1 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.7.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb
shopify-cli-1.6.0 vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb