-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (33 loc) · 1.01 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.1'
gem 'rails', github: "rails/rails", branch: "6-0-stable"
# Faster rendering/serialization
gem 'jsonapi-resources'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Sidekiq for background workers
gem 'sidekiq'
gem 'redis-namespace'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
# Pretty print is always a must
gem 'awesome_print'
# Protection from hackers
gem 'rack-attack'
group :development, :test do
gem 'byebug'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'active_record_query_trace'
gem 'spring'
end