Package com.github.kevwil.aspen.io

Examples of com.github.kevwil.aspen.io.RubyIORackErrors


    void updateEnv( final RubyHash env, final Request request )
    {
        env.put( "rack.version", Version.RACK );
        env.put( "rack.input", getRackInput() );
        env.put( "rack.errors", new RubyIORackErrors( _runtime ) );
        env.put( "rack.multithread", true );
        env.put( "rack.multiprocess", false );
        env.put( "rack.run_once", false );
        env.put( "rack.url_scheme", request.getUrl().getProtocol() );
    }
View Full Code Here

TOP

Related Classes of com.github.kevwil.aspen.io.RubyIORackErrors

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.