-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
Gemfile
50 lines (42 loc) · 1.09 KB
/
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
43
44
45
46
47
48
49
50
source "https://rubygems.org"
gemspec
gem "rake", "~>12.3.3"
gem "sqlite3", ">=2.0.0"
gem "conventional-changelog", "~>1.3"
gem "bump", "~> 0.5"
gem "padrino-core", ">= 0.14.3", "~> 0.14", require: false
gem "sinatra", "~> 3.0", require: false
group :development do
gem "pry-byebug"
gem "rubocop", "~>1.1"
gem "rubocop-performance", "~> 1.11"
gem "sequel-annotate", "~>1.3"
gem "yard", "~> 0.9"
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", "~>2.0"
gem "docker-api", "~>1.34"
gem "approvals", ">=0.0.24", "<1.0.0"
gem "tzinfo", "~>2.0"
gem "faraday-retry", "~>2.0"
gem "openapi_first", "~>0.20"
end
group :pg, optional: true do
gem "pg", "~>1.2"
end
group :mysql, optional: true do
gem "mysql2", "~>0.5"
end
if ENV["X_PACT_DEVELOPMENT"] == "true"
gem "pact-support", path: "../pact-support"
end