Sha256: b875eec05dd1a6235254be67ee457c72e9609bef30660ff23e524e0562c029c5
Contents?: true
Size: 447 Bytes
Versions: 68
Compression:
Stored size: 447 Bytes
Contents
module RubyApp module Rack require 'ruby_app' class Application def initialize(application, options = {}) @application = application RubyApp::Configuration.load!(options[:configuration_paths]) RubyApp::Log.open! RubyApp::Application.create! RubyApp::Session.start_thread! end def call(environment) return @application.call(environment) end end end end
Version data entries
68 entries across 68 versions & 1 rubygems