-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
92 lines (68 loc) · 2.14 KB
/
Copy pathGemfile
File metadata and controls
92 lines (68 loc) · 2.14 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '4.0.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.1.3'
# Pagination
gem 'pagy', '~> 43.5'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 8.0'
# JSON serialization
gem 'blueprinter'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Authentication
gem 'devise'
gem 'devise-jwt'
# ENV variables
gem 'dotenv'
# Needed in production for initial staging database seed
gem 'faker', git: 'https://github.com/faker-ruby/faker.git', branch: 'main', require: false
# Handle statistics database queries
gem 'groupdate'
# Image uploading and processing
gem 'image_processing', '~> 2.0'
# Handle email catching
gem 'letter_opener_web'
gem 'mission_control-jobs', '~> 1.1'
# Fast JSON
gem 'oj'
gem 'propshaft'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
gem 'solid_queue'
group :development, :test do
gem 'bundler-audit'
gem 'rspec-json_expectations'
gem 'rspec-rails', '~> 8.0.4'
gem 'rubocop', require: false
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'rubycritic', require: false
gem 'spring-commands-rspec'
end
group :development do
# Used for annotate models, serializers and models specs
gem 'brakeman'
gem 'bullet'
gem 'listen', '~> 3.10'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'database_cleaner-active_record'
gem 'db-query-matchers'
gem 'factory_bot_rails'
gem 'shoulda-matchers'
gem 'vcr'
gem 'webmock'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:windows, :jruby]