-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (38 loc) · 1.04 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.7'
gem 'rails', '~> 7.0', '>= 7.0.8'
gem 'mysql2'
gem 'puma', '~> 6.4'
gem 'sass-rails', '>= 6'
#gem 'webpacker', '~> 4.0'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'haml-rails', '~> 2.0'
gem 'devise'
gem 'pundit'
gem 'activeadmin'
gem 'redis'
gem 'recaptcha'
gem 'dotenv-rails'
gem 'kaminari'
gem 'foreman', '0.87.1', require: false
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capistrano', '~> 3.6', require: false
gem 'capistrano-bundler', '~> 1.6', require: false
gem 'capistrano-rvm', '~> 0.1', require: false
gem "capistrano-rails", "~> 1.5", require: false
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen'
gem 'spring', '~> 4.1'
gem 'byebug'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "dockerfile-rails", ">= 1.5", :group => :development