Sha256: 873c0897317923a74fe1894ced619eea13cf158a3ca8bc7390f15ed554786897
Contents?: true
Size: 255 Bytes
Versions: 12
Compression:
Stored size: 255 Bytes
Contents
# frozen_string_literal: true class Puppet::Network::HTTP::MemoryResponse attr_reader :code, :type, :body def initialize @body = String.new end def respond_with(code, type, body) @code = code @type = type @body += body end end
Version data entries
12 entries across 12 versions & 1 rubygems