ech_config 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/unicode-display_width/all/unicode-display_width.rbi
9
9
  #
10
- # unicode-display_width-2.4.2
10
+ # unicode-display_width-2.5.0
11
11
 
12
12
  module Unicode
13
13
  end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/webrick/all/webrick.rbi
9
9
  #
10
- # webrick-1.7.0
10
+ # webrick-1.8.1
11
11
 
12
12
  module Errno
13
13
  end
@@ -381,6 +381,7 @@ class WEBrick::HTTPRequest
381
381
  def keep_alive?; end
382
382
  def meta_vars; end
383
383
  def parse(socket = nil); end
384
+ def parse_host_request_line(host); end
384
385
  def parse_query; end
385
386
  def parse_uri(str, scheme = nil); end
386
387
  def path; end
@@ -463,6 +464,9 @@ class WEBrick::HTTPResponse
463
464
  def status; end
464
465
  def status=(status); end
465
466
  def status_line; end
467
+ def upgrade!(protocol); end
468
+ def upgrade; end
469
+ def upgrade=(arg0); end
466
470
  end
467
471
  class WEBrick::HTTPResponse::InvalidHeader < StandardError
468
472
  end
@@ -529,6 +533,7 @@ end
529
533
  class WEBrick::HTTPServlet::ProcHandler < WEBrick::HTTPServlet::AbstractServlet
530
534
  def do_GET(request, response); end
531
535
  def do_POST(request, response); end
536
+ def do_PUT(request, response); end
532
537
  def get_instance(server, *options); end
533
538
  def initialize(proc); end
534
539
  end