Sha256: 998c1506ec9727d7dc67955926d727078064f4fba61254e9a1ace99ee4cfdbfc

Contents?: true

Size: 362 Bytes

Versions: 130

Compression:

Stored size: 362 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::DEBUG, RubyApp::Log.prefix(self, __method__)) do
          return @application.call(environment)
        end
      end

    end

  end

end

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
RubyApp-0.5.16 lib/ruby_app/rack/memory.rb
RubyApp-0.5.15 lib/ruby_app/rack/memory.rb
RubyApp-0.5.14 lib/ruby_app/rack/memory.rb
RubyApp-0.5.13 lib/ruby_app/rack/memory.rb
RubyApp-0.5.12 lib/ruby_app/rack/memory.rb
RubyApp-0.5.11 lib/ruby_app/rack/memory.rb
RubyApp-0.5.10 lib/ruby_app/rack/memory.rb
RubyApp-0.5.9 lib/ruby_app/rack/memory.rb
RubyApp-0.5.0 lib/ruby_app/rack/memory.rb
RubyApp-0.2.8 lib/ruby_app/rack/memory.rb