forked from pact-foundation/pact_broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
42 lines (35 loc) · 883 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
source 'https://rubygems.org'
gemspec
gem 'rake', '~>12.3.3'
gem 'sqlite3', '~>1.3'
gem 'conventional-changelog', '~>1.3'
gem 'bump', '~> 0.5'
group :development do
gem 'pry-byebug'
gem 'sequel-annotate', '~>1.3'
end
group :test do
gem 'simplecov', :require => false
gem 'pact', '~>1.14'
gem 'rspec-pact-matchers', '~>0.1'
gem 'bundler-audit', '~>0.4'
gem 'fakefs', '~>0.4'
gem 'webmock', '~>3.9'
gem 'rspec', '~>3.0'
gem 'rspec-its', '~>1.2'
gem 'database_cleaner', '~>1.8', '>= 1.8.1'
gem 'timecop', '~> 0.9'
gem 'faraday', '~>0.15'
gem 'faraday_middleware', '~> 0.14'
gem 'docker-api', '~>1.34'
gem 'approvals', '>=0.0.1', '<1.0.0'
end
if ENV['INSTALL_MYSQL'] == "true"
gem 'mysql2', '~>0.5'
end
if ENV['INSTALL_PG'] == 'true'
gem 'pg', '~>1.2'
end
if ENV['X_PACT_DEVELOPMENT'] == 'true'
gem 'pact-support', path: '../pact-support'
end