-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (46 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
source 'https://rubygems.org'
# Which version of Ruby to use (keep in sync with .ruby-version)
ruby '3.0.0'
# Ruby on Rails framework
gem 'rails'
# Puma app server
gem 'puma', '4.3.6'
# Postgress database
gem 'pg'
# For handling Cross-Origin Resource Sharing (CORS)
gem 'rack-cors', require: 'rack/cors'
# For loading in environment variables
gem 'dotenv-rails'
# For converting all incoming JSON to snake_case and outgoing JSON to dashes
gem 'olive_branch'
# For JSON API compliant serialisers
gem 'jsonapi-serializer'
# For token based authentication, specifically Json Web Token (JWT)
gem 'jwt'
# For enabling ActiveModel has_secure_password, effectively hiding user passwords from the database
gem 'bcrypt'
# For coloured printing in byebug and console `ap`
gem 'awesome_print'
# For halting the code and debugging `byebug`
gem 'byebug', groups: %i[development test]
# For seeding the database with modular control and dependencies
gem 'seedbank'
# For dumping database data into a YAML file (great for maintenance backups)
gem 'yaml_db'
# So we can upload files to Digital Ocean Spaces (S3-compatible)
gem 'aws-sdk-s3'
# For HTTP requests (native Rails does this terribly...)
gem 'faraday'
# For printing curl requests after Faraday requests
gem 'faraday_curl', groups: %i[development]
# For catching N+1 queries
gem 'bullet', groups: %i[development test]
# For listening to file changes
gem 'listen', groups: %i[development]
# For Ruby syntax formatting
gem 'rubocop', groups: %i[development], require: false
gem 'rubocop-rails', groups: %i[development]
# For testing (out-of-the-box with Rails 5)
gem 'minitest', groups: %i[test]
# For annotating models and fixtures with schema info.
gem 'annotate', groups: %i[development]