-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
35 lines (29 loc) · 922 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(File.expand_path('.ruby-version', __dir__))
gem 'active_model_serializers', '~> 0.10.10'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'pagy', '~> 3.8.1'
gem 'pg', '~> 1.2.3'
gem 'puma', '~> 4.3'
gem 'rails', '~> 6.0.3'
gem 'rollbar'
gem 'savon'
# This is a workaround until the issue will be closed. See: https://github.com/liufengyun/hashdiff/issues/45
gem 'hashdiff', ['>= 1.0.0.beta1', '< 2.0.0']
group :development, :test do
gem 'brakeman', require: false
gem 'bundler-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails', '>= 2.7.5'
gem 'pry-rails'
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.3'
gem 'web-console', '>= 4.0.1'
end