Sha256: 6a0b2eb8d14b0431fd0ee00f939910c745d3c30c858864a680e11ea288ddcbe4
Contents?: true
Size: 455 Bytes
Versions: 3
Compression:
Stored size: 455 Bytes
Contents
module RubyApp module Rack require 'ruby_app/application' require 'ruby_app/log' require 'ruby_app/request' class Application def initialize(application, options = {}) @application = application RubyApp::Application.create!(options) end def call(environment) RubyApp::Request.create!(environment) do return @application.call(environment) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
RubyApp-0.0.91 | lib/ruby_app/rack/application.rb |
RubyApp-0.0.90 | lib/ruby_app/rack/application.rb |
RubyApp-0.0.89 | lib/ruby_app/rack/application.rb |