Sha256: fcc2e0157210d5f207b2c0d780b5b009ccdbb3cc391a2c62a8f6c632a65f847b

Contents?: true

Size: 341 Bytes

Versions: 8

Compression:

Stored size: 341 Bytes

Contents

module RubyApp

  module Rack
    require 'ruby_app'

    class Memory

      def initialize(application)
        @application = application
      end

      def call(environment)
        RubyApp::Log.memory(RubyApp::Log.prefix(self, __method__)) do
          return @application.call(environment)
        end
      end

    end

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
RubyApp-0.2.7 lib/ruby_app/rack/memory.rb
RubyApp-0.2.6 lib/ruby_app/rack/memory.rb
RubyApp-0.2.5 lib/ruby_app/rack/memory.rb
RubyApp-0.2.4 lib/ruby_app/rack/memory.rb
RubyApp-0.2.3 lib/ruby_app/rack/memory.rb
RubyApp-0.2.2 lib/ruby_app/rack/memory.rb
RubyApp-0.2.1 lib/ruby_app/rack/memory.rb
RubyApp-0.2.0 lib/ruby_app/rack/memory.rb