Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/network/http/memory_response.rb
class Puppet::Network::HTTP::MemoryResponse
attr_reader :code, :type, :body
def initialize
@body = ""
end
def respond_with(code, type, body)
@code = code
@type = type
@body += body
end
end