-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
89 lines (75 loc) · 1.91 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.4.0'
gem 'rails', '~> 7.2'
gem 'puma'
gem 'base64'
gem 'csv'
gem 'drb'
gem 'mutex_m'
gem 'nokogiri', '~> 1.11'
gem 'syslog'
gem 'uuid4'
gem 'browser'
gem 'connection_pool'
gem 'iso_country_codes'
gem 'maxminddb'
# Rails plugins
gem 'decorate-responder'
gem 'draper'
gem 'link_header'
gem 'paginate-responder'
gem 'paper_trail', '~> 16.0' # for versioning
gem 'rails-rfc6570', '~> 3.0'
gem 'responders'
gem 'will_paginate'
# Messaging and background jobs
gem 'msgr', '~> 1.5'
gem 'sidekiq', '~> 8.0'
gem 'sidekiq-cron', '~> 2.0'
# Databases and clients
gem 'aws-sdk-s3', '~> 1.16'
gem 'elasticsearch', '~> 7.17.0'
gem 'elasticsearch-transport', '~> 7.17.0'
gem 'faraday-typhoeus' # required for elasticsearch trying to use faraday 2+ and typhoeus
gem 'pg', '~> 1.1'
gem 'redis', '~> 5.0'
gem 'restify', '~> 2.0'
# Monitoring and metrics
gem 'mnemosyne-ruby', '~> 2.0'
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'sentry-sidekiq'
gem 'telegraf', '~> 3.0'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'memory_profiler'
gem 'os'
gem 'ruby-prof' # To do performance evaluation
end
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri windows], require: 'debug/prelude'
gem 'database_cleaner'
gem 'factory_bot_rails', '~> 6.0'
gem 'listen'
gem 'rspec', '~> 3.10'
gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'rspec-rails'
gem 'rspec-sidekiq'
gem 'rspec-teamcity', require: false
gem 'rubocop', '~> 1.75.0'
gem 'rubocop-factory_bot', '~> 2.27.0'
gem 'rubocop-performance', '~> 1.24.0'
gem 'rubocop-rails', '~> 2.30.0'
gem 'rubocop-rspec', '~> 3.5.0'
gem 'rubocop-rspec_rails', '~> 2.31.0'
gem 'simplecov'
gem 'timecop'
gem 'webmock'
end
group :test, :integration do
gem 'rack-remote'
end