# File lib/new_relic/rack/developer_mode.rb, line 54
      def _call(env)
        NewRelic::Agent.ignore_transaction

        @req = ::Rack::Request.new(env)
        @rendered = false
        case @req.path_info
        when /profile/
          profile
        when /file/
          ::Rack::File.new(VIEW_PATH).call(env)
        when /index/
          index
        when /threads/
          threads
        when /reset/
          reset
        when /show_sample_detail/
          show_sample_data
        when /show_sample_summary/
          show_sample_data
        when /show_sample_sql/
          show_sample_data
        when /explain_sql/
          explain_sql
        when /^\/newrelic\/?$/
          index
        else
          @app.call(env)
        end
      end