-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (56 loc) · 1.23 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
# Core
gem 'rails', '~> 7.0.4'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Web Server
gem 'puma', '~> 5.0'
# Drivers
gem 'pg', '~> 1.1'
gem 'redis', '~> 4.0'
# Assets
gem 'importmap-rails'
gem 'jbuilder'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'tailwindcss-rails', '~> 2.0'
gem 'turbo-rails'
gem 'view_component', '2.79.0'
# Security
gem 'bcrypt', '~> 3.1.7'
gem 'blind_index'
gem 'lockbox'
# Others
gem 'aws-sdk-s3', require: false
gem 'bootsnap', require: false
gem 'enumerize', '2.5.0'
gem 'inline_svg'
gem 'kaminari'
gem 'plaid'
gem 'rails-pg-extras'
gem 'ransack'
gem 'rtesseract'
gem "roo", "~> 2.10.0"
gem 'rubyzip'
group :development, :test do
gem 'annotate'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'figaro'
gem 'factory_bot_rails'
gem 'json_spec'
gem 'rspec-rails', '~> 6.0.0'
gem 'shoulda-callback-matchers'
end
group :development do
gem 'hotwire-livereload', '~> 1.2'
gem 'lookbook'
gem 'web-console'
end
group :test do
gem 'database_cleaner-active_record'
gem 'shoulda-matchers', '~> 5.0'
gem 'simplecov'
end
gem 'bugsnag', '~> 6.25'