Sha256: 5c9621a0a4a37ee66620e25e2d45031f0e1904b4c5735a3fb9b1d016edeef267

Contents?: true

Size: 372 Bytes

Versions: 3

Compression:

Stored size: 372 Bytes

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
# Licensed under the Apache License, Version 2.0, found in the LICENSE file.

module Rack::AllocationStats
  class Action
    def initialize(env, middleware)
      @env = env
      @request = Rack::Request.new(env)
      @get_params = @request.GET.clone
      @middleware = middleware
      @stats = nil
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rack-allocation_stats-0.1.2 lib/rack/allocation_stats/action.rb
rack-allocation_stats-0.1.1 ./lib/rack/allocation_stats/action.rb
rack-allocation_stats-0.1.0 ./lib/rack/allocation_stats/action.rb