Sha256: 0d72a38aa5482619c4b5127ed596935e02fb0d74efb05fd91731d93fb902a155
Contents?: true
Size: 1.62 KB
Versions: 5
Compression:
Stored size: 1.62 KB
Contents
require "pact_broker/ui/controllers/index" require "pact_broker/ui/controllers/groups" require "pact_broker/ui/controllers/pacts" require "pact_broker/ui/controllers/matrix" require "pact_broker/ui/controllers/can_i_deploy" require "pact_broker/ui/controllers/error_test" require "pact_broker/doc/controllers/app" module PactBroker module UI class PathInfoFixer PATH_INFO = "PATH_INFO".freeze def initialize app @app = app end def call env env[PATH_INFO] = "/" if env[PATH_INFO] == "" @app.call(env) end end class App def initialize @app = ::Rack::Builder.new { map "/ui/relationships" do run PactBroker::UI::Controllers::Index end map "/groups" do run PactBroker::UI::Controllers::Groups end map "/doc" do run PactBroker::Doc::Controllers::App end map "/matrix" do use PathInfoFixer run PactBroker::UI::Controllers::Matrix end map "/pacticipants/" do use PathInfoFixer run PactBroker::UI::Controllers::CanIDeploy end map "/pacts/" do use PathInfoFixer run PactBroker::UI::Controllers::Pacts end map "/test/error" do use PathInfoFixer run PactBroker::UI::Controllers::ErrorTest end map "/" do use PathInfoFixer run PactBroker::UI::Controllers::Index end } end def call env @app.call(env) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems