-
-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathGemfile
More file actions
54 lines (47 loc) · 1.32 KB
/
Copy pathGemfile
File metadata and controls
54 lines (47 loc) · 1.32 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
source "https://rubygems.org"
gemspec
gem "rake", "~> 13.3"
gem "sqlite3", ">=2.0.0"
gem "conventional-changelog", "~>1.3"
gem "bump", "~> 0.5"
gem "padrino-core", ">= 0.16.0.pre3", require: false
gem "rackup", "~> 2.2"
gem "thor", "~> 1.4" # thor is secondary dependency but bumping here to avoid CVEs
group :development do
gem "pry-byebug"
gem "rubocop", "~>1.7"
gem "rubocop-performance", "~> 1.23"
gem "sequel-annotate", "~>1.3"
gem "yard", "~> 0.9"
end
group :test do
gem "simplecov", :require => false
gem "simplecov-cobertura", :require => false
gem "rspec_junit_formatter", :require => false
if ENV["X_PACT_DEVELOPMENT"] == "true"
gem "pact", path: "../pact-ruby"
gem "pact-ffi", path: "../pact-ruby-ffi"
else
gem "pact", "~>1.14"
gem "pact-ffi", "~>0.4.28"
end
gem "rspec-pact-matchers", "~>0.1"
gem "bundler-audit", "~>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", "~>2.0"
gem "docker-api", "~>2.0"
gem "approvals", ">=0.0.24", "<1.0.0"
gem "tzinfo", "~>2.0"
gem "faraday-retry", "~>2.0"
gem "openapi_first", "~>2.0"
end
group :pg, optional: true do
gem "pg", "~>1.6"
end
if ENV["X_PACT_DEVELOPMENT"] == "true"
gem "pact-support", path: "../pact-support"
end