-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (46 loc) · 1.28 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
source 'https://rubygems.org'
gem 'rails', '7.0.8.6'
gem 'rake', '13.0.6'
group :development do
gem 'brakeman' # It is recommended to always use the latest version.
gem 'bundler-audit'
gem 'listen'
gem 'spring', '~> 4.1.1'
gem 'web-console', '~> 4.2.0'
end
group :development, :test do
gem 'byebug', '~> 11.1.3'
gem 'dotenv-rails', '~> 2.8.1'
gem 'factory_bot_rails', '~> 6.4.4'
gem 'rspec-rails', '~> 7.1.0'
end
group :test do
gem 'pundit-matchers', '~> 3.1.2'
gem 'rspec_junit_formatter' # Used for formatting CircleCI output
gem 'shoulda-matchers', '~> 5.3.0'
end
gem 'bcrypt', '~> 3.1.20'
gem 'bootsnap', '~> 1.16'
gem 'cocoon', '~> 1.2.15'
gem 'devise', '~> 4.9.4'
gem 'jbuilder', '~> 2.11.5'
gem 'jquery-rails', '~> 4.5.1'
gem 'kaminari', '~> 1.2.2'
gem 'kramdown', '~> 2.4.0'
gem 'local_time', '~> 2.1.0'
gem 'mini_magick', '~> 4.12.0'
gem 'mini_racer', '~> 0.6.3'
gem 'nokogiri', '~> 1.16.2'
gem 'onebox', '~> 2.2.19'
gem 'kt-paperclip', '~> 7.1.1'
gem 'paper_trail', '~> 14.0.0'
gem 'pg', '~> 1.4.6'
gem 'pundit', '~> 2.3.0'
gem 'puma', '~> 6.4.2'
gem 'rack-cors', '~> 2.0.1'
gem 'rails_autolink', '~> 1.1.8'
gem 'ransack', '~> 4.2.1'
gem 'sanitize', '~> 6.0.1'
gem 'sprockets-rails', require: 'sprockets/railtie'
gem 'uglifier', '>= 4.2.0'
gem 'webpacker', '~> 5.4.4'