forked from pact-foundation/pact-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
23 lines (18 loc) · 880 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'
# Specify your gem's dependencies in pact.gemspec
gemspec
# If rspec-mocks is not locked, spec/lib/pact/consumer/configuration_spec.rb fails on Ruby 3.0
# Should raise an issue, but no time right now.
# #<Pact::MockService::AppManager:0x00007fcf21410e68 @apps_spawned=false, @app_registrations=[]> received :register_mock_service_for with unexpected arguments
# expected: ("Mock Provider", "http://localhost:1234", {:find_available_port=>false, :pact_specification_version=>"1"})
# got: ("Mock Provider", "http://localhost:1234", {:find_available_port=>false, :pact_specification_version=>"1"})
# Diff:
gem "rspec-mocks", "3.10.2"
if ENV['X_PACT_DEVELOPMENT']
gem "pact-support", path: '../pact-support'
gem "pact-mock_service", path: '../pact-mock_service'
gem "pry-byebug"
end
group :local_development do
gem "pry-byebug"
end