This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
58 lines (51 loc) · 1.44 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
51
52
53
54
55
56
57
58
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'apipie-rails', '~> 0.5.8'
gem 'health_check', '~> 3.0.0'
gem 'httparty', '~> 0.17.0'
gem 'jbuilder', '~> 2.8.0'
gem 'jbuilder_pagination_plus', '~> 1.0.0', require: 'jbuilder/pagination'
gem 'jwt', '~> 2.2.0'
gem 'kaminari', '~> 1.1.1'
gem 'lograge', '~> 0.11.1'
gem 'maruku', '~> 0.7.3'
gem 'oj', '~> 3.7.12'
gem 'paper_trail', '~> 10.3.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'pg_search', '~> 2.3.0'
gem 'puma', '~> 4.0.0'
gem 'pundit', '~> 2.0.1'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 5.2.0'
group :development, :test do
gem 'bullet'
gem 'dotenv-rails'
gem 'faker', '~> 1.9.3'
gem 'guard'
gem 'guard-brakeman'
gem 'guard-minitest'
gem 'guard-rubocop'
gem 'guard-shell'
gem 'httplog', '~> 1.2.2'
gem 'minitest-ci'
gem 'minitest-reporters'
gem 'policy-assertions', '~> 0.2.0'
gem 'rubocop', '~> 0.72.0'
gem 'rubocop-performance', '~> 1.4.0'
gem 'rubocop-rails', '~> 2.2.1'
gem 'simplecov', require: false
end
group :development do
gem 'annotate', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :production do
gem 'newrelic_rpm'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]