-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
103 lines (73 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |_repo| 'https://github.com/thewca/wca-registration.git' }
ruby '3.3.5'
# Gems that are only needed by the handler not the worker
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.2.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '~> 6.4'
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
gem 'money-rails'
# much better gem for http requests than the native ruby one
gem 'httparty'
# jwt decoding
gem 'jwt'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Use Redis adapter to run Action Cable in production
gem 'hiredis'
gem 'redis', '~> 5.3'
# So Redis can share connections
gem 'connection_pool'
# DynamoDB for storing registrations
gem 'aws-sdk-dynamodb'
gem 'dynamoid', '3.8.0'
# SQS for adding data into a queue
gem 'aws-sdk-sqs'
# SQS Job Management
gem 'shoryuken'
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
gem 'kredis'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# vault for secrets management
gem 'vault'
# for environment variable management
gem 'dotenv-rails', require: 'dotenv/load'
gem 'superconfig'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri mingw x64_mingw]
# run pre-commit hooks
gem 'overcommit'
# rspec-rails for creating tests
gem 'rspec-rails'
# Use rswag for creating rspec tests that also produce swagger spec files
gem 'rswag'
# Use pry for live debugging
gem 'pry'
# webmock for mocking responses from other microservices
gem 'webmock', require: false
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-performance', require: false
# Use factories instead of fixtures
gem 'factory_bot_rails'
end
group :development do
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
gem 'ruby-prof'
# Better Errors replaces the standard Rails error page with a much better and more useful error page.
gem 'better_errors'
gem 'binding_of_caller'
end
group :production do
gem 'newrelic_rpm'
end