-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
64 lines (55 loc) · 1.54 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.1'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# Authorization & Authentication
gem 'cancancan', '~> 3.3.0'
gem 'devise', '~> 4.9.3'
# Environment management
gem 'dotenv-rails'
# SEO
gem 'meta-tags', '~> 2.20'
# Postgres client
gem 'pg'
# Administrative backend
gem 'rails_admin', '~> 3.1'
# Third-party integrations client
gem 'rest-client', '~> 2.1.0'
# Dump data into seed file
gem 'seed_dump'
# K8s health checking
gem 'rails-healthcheck'
# Use webpacker js bundler
gem 'webpacker'
# Rails framework
gem 'rails', '~> 7.1'
# Use Puma as the app server
gem 'puma', '~> 6.4'
# Use Redis adapter for caching & cable
gem 'redis', '~> 4.0'
# Use faster connection library for Redis
gem 'hiredis'
# Sidekiq for jobs
gem 'sidekiq', '~> 7.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
# gem 'codecov', require: false
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'webmock'
end
group :development do
# Access an IRB console on exception pages or by
# using <%= console %> anywhere in the code.
gem 'rubocop'
gem 'rubocop-minitest', require: false
gem 'rubocop-rails', require: false
gem 'web-console', '>= 3.3.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw ruby]