-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
40 lines (34 loc) · 938 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
# frozen_string_literal: true
source 'https://rubygems.org'
group :development, :test do
gem 'rake'
gem 'activerecord', require: nil
gem 'connection_pool', require: nil
gem 'gc_ruboconfig'
gem 'pg', require: nil, platform: :ruby
gem 'pg_jruby', require: nil, platform: :jruby
gem 'pond', require: nil
gem 'rubocop', '~> 1.64.1'
gem 'rubocop-performance', '~> 1.21.1'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 3.0.2'
gem 'rubocop-sequel', '~> 0.3.4'
gem 'sequel', require: nil
rack_version = ENV.fetch('RACK_VERSION', "3.1")
gem "rack", rack_version
if Gem::Version.new(rack_version) < Gem::Version.new('3.0.0')
gem "rackup", "~> 1.0"
else
gem "rackup", "~> 2.0"
end
end
group :test do
gem 'pry'
gem 'pry-byebug'
gem 'rspec', '~> 3.9'
end
gem 'prometheus-client', '~> 1.0'
source "https://rubygems.pkg.github.com/gocardless" do
gem "prometheus_gcstat"
end
gemspec