-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (37 loc) · 1.07 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.4'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'jbuilder', '~> 2.7'
gem 'pg', '~> 1.4', '>= 1.4.3'
gem 'puma', '~> 5.0'
gem 'rails', '~> 6.1.6', '>= 6.1.6.1'
gem 'sass-rails', '>= 6'
gem 'turbolinks', '~> 5'
gem 'webpacker', '~> 5.0'
group :development, :test do
gem 'better_errors', '~> 2.9'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'rails-erd', '~> 1.7'
end
group :development do
gem 'letter_opener', '~> 1.8'
gem 'listen', '~> 3.3'
gem 'rack-mini-profiler', '~> 2.0'
gem 'spring'
gem 'web-console', '>= 4.1.0'
gem 'htmlbeautifier', '~> 1.4'
gem "redcarpet", "~> 3.5"
gem "doctor_ipsum", "~> 0.3.1"
gem 'faker', '~> 2.23'
gem 'rubocop-faker', '~> 1.1'
gem 'rubocop', '~> 1.37'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'devise', '~> 4.8'
gem 'bootstrap_sb_admin_base_v2', '~> 0.3.6'
gem 'pundit', '~> 2.2'
gem 'money-rails', '~> 1.15'
gem 'kt-paperclip', '~> 7.1'
gem 'fog', '~> 2.3'