forked from LBHackney-IT/repairs-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
32 lines (26 loc) · 831 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.2"
gem "bootsnap", ">= 1.4.2", require: false
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 4.1"
gem "rails", "~> 6.0.3"
gem "webpacker", "~> 4.0"
group :development, :test do
gem "brakeman", require: false
gem "bundler-audit", require: false
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "pry-byebug"
gem "rspec-rails", "~> 4.0.1"
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop", require: false
gem "simplecov", require: false
end
group :development do
gem "web-console", ">= 3.3.0"
gem "listen", "~> 3.2"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]