All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.rack.rails.extensions.rb Maven / Gradle / Ivy

#--
# Copyright (c) 2010-2012 Engine Yard, Inc.
# Copyright (c) 2007-2009 Sun Microsystems, Inc.
# This source code is available under the MIT license.
# See the file LICENSE.txt for details.
#++

JRuby::Rack::RailsBooter.run_boot_hooks!

require 'jruby/rack/rack_ext'

require 'action_controller'

module ActionController
  class Base
    def servlet_request
      request.env['java.servlet_request']
    end

    def servlet_response
      request.env['java.servlet_response']
    end

    def forward_to(url)
      request.forward_to(url)
    end
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy