Sha256: 1cb12757d651bd51ed0e7554a7e11e1857263656c761633fa40cd6c420264cbe

Contents?: true

Size: 255 Bytes

Versions: 8

Compression:

Stored size: 255 Bytes

Contents

$LOAD_PATH << 'lib' << '../lib'

require 'optparse'
require 'socket'
require 'openssl'
require 'http/2'
require 'uri'

DRAFT = 'h2'.freeze

class Logger
  def initialize(id)
    @id = id
  end

  def info(msg)
    puts "[Stream #{@id}]: #{msg}"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
http-2-0.11.0 example/helper.rb
http-2-0.10.2 example/helper.rb
http-2-0.10.1 example/helper.rb
http-2-0.10.0 example/helper.rb
http-2-0.9.1 example/helper.rb
http-2-0.9.0 example/helper.rb
http-2-0.8.4 example/helper.rb
http-2-0.8.3 example/helper.rb