Sha256: fed0866f6a7d708996ba26f566f897ac9f9dea2a5a15cb5c273f407fa60b369f
Contents?: true
Size: 437 Bytes
Versions: 14
Compression:
Stored size: 437 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. class TestingApp attr_accessor :response, :headers def initialize reset_headers end def reset_headers @headers = {'Content-Type' => 'text/html'} end def call(env) [200, headers, [response]] end include NewRelic::Agent::Instrumentation::Rack end
Version data entries
14 entries across 14 versions & 1 rubygems