-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Gemfile
87 lines (73 loc) · 2.49 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
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
ruby '3.2.4'
gem 'aws-sdk-s3', '~> 1.119'
gem 'concurrent-ruby', '~> 1.2'
gem 'devise'
gem 'httparty'
gem 'jwt', '~> 2.6'
gem 'rails', '~> 7.0.8.4'
gem 'pg', '~> 1.4'
gem 'puma', '~> 6.4'
gem 'rack-cors', :require => 'rack/cors'
gem 'rack-brotli'
gem 'sassc-rails', '~> 2.1.2'
gem 'uglifier', '>= 1.3.0'
gem 'oj', '~> 3.13'
gem 'pundit', '~> 2.3.0'
gem 'google-apis-sheets_v4'
gem 'addressable', '~> 2.8'
# Workers/Queuing
gem "good_job", "~> 3.14"
# Caching
gem 'redis', '~> 5.0'
gem 'hiredis'
# Monitoring & Telemetry
gem 'sentry-ruby', '~> 5.7.0'
gem 'sentry-rails', '~> 5.7.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.6'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.5', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'rubocop', '~> 1.44.1', require: false
gem 'rubocop-performance', '~> 1.15.2'
gem 'rubocop-rails', '~> 2.17.4'
gem 'dotenv-rails'
end
group :development do
gem 'listen', '~> 3.8'
gem 'pry-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 4.0.2'
end
group :test do
gem 'capybara'
gem 'capybara-email'
gem 'webmock', '~> 3.18'
# NOTE: Rails requires Selenium Webdriver to be present in order to run system tests, regardless of what driver
# you're actually using. See also https://github.com/rails/rails/issues/37410
gem 'selenium-webdriver'
end
group :production do
# Send transactional e-mail with Postmark
gem 'postmark-rails', group: :postmark
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]