Sha256: 1b717e81282f7dc15dabfb33dcd7f8ad5ca74c460fb551e04c5e02e7c51b9d74
Contents?: true
Size: 1.62 KB
Versions: 7
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
7 entries across 7 versions & 1 rubygems