Skip to content

Commit 652047c

Browse files
committed
fix: update call to Rack::Builder.parse_file for rack 3
1 parent 30a47dd commit 652047c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pact/provider/configuration/service_provider_dsl.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ServiceProviderDSL
2121
unless File.exist? Pact.configuration.config_ru_path
2222
raise "Could not find config.ru file at #{Pact.configuration.config_ru_path} Please configure the service provider app or create a config.ru file in the root directory of the project. See https://github.com/pact-foundation/pact-ruby/wiki/Verifying-pacts for more information."
2323
end
24-
Rack::Builder.parse_file(Pact.configuration.config_ru_path).first
24+
Rack::Builder.parse_file(Pact.configuration.config_ru_path)
2525
}
2626

2727
def initialize name

0 commit comments

Comments
 (0)