Sha256: ae731a4cf56c96c56d3ddebbc98cda1b2b53741541fd77abb83c1b89b9efe19c

Contents?: true

Size: 621 Bytes

Versions: 4

Compression:

Stored size: 621 Bytes

Contents

class PumaMock
  module MiniSSL
    class SSLError < StandardError
      def self.to_s
        "Puma::MiniSSL::SSLError"
      end
    end
  end

  class HttpParserError < StandardError
    def self.to_s
      "Puma::HttpParserError"
    end
  end

  class HttpParserError501 < StandardError
    def self.to_s
      "Puma::HttpParserError501"
    end
  end

  def self.stats
  end

  def self.cli_config
    @cli_config ||= CliConfig.new
  end

  class Server
  end

  module Const
    VERSION = "6.0.0".freeze
  end

  class CliConfig
    attr_accessor :options

    def initialize
      @options = {}
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
appsignal-4.0.6-java spec/support/mocks/puma_mock.rb
appsignal-4.0.6 spec/support/mocks/puma_mock.rb
appsignal-4.0.5-java spec/support/mocks/puma_mock.rb
appsignal-4.0.5 spec/support/mocks/puma_mock.rb