Sha256: 53ced6f56416d1191a12344ed511b1fc80088e65a2b7a5a9a10459ee10fd899f

Contents?: true

Size: 248 Bytes

Versions: 6

Compression:

Stored size: 248 Bytes

Contents

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

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

DRAFT = 'h2'

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

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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
http-2-0.8.2 example/helper.rb
http-2-0.8.1 example/helper.rb
mieps_http-2-0.8.2 example/helper.rb
mieps_http-2-0.8.1 example/helper.rb
mieps_http-2-0.8.0 example/helper.rb
http-2-0.8.0 example/helper.rb