generated from drabkirn/rails_base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
56 lines (47 loc) · 1.61 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.5'
gem 'rails', '~> 6.1.6.1'
gem 'mysql2', '~> 0.5.3'
gem 'puma', '~> 4.3'
gem 'webpacker', '~> 5.1', '>= 5.1.1'
gem 'jbuilder', '~> 2.10'
gem 'bootsnap', '~> 1.4', '>= 1.4.6', require: false
gem 'tzinfo-data', '~> 1.2020', '>= 1.2020.1'
gem 'sass-rails', '>= 6'
gem 'turbolinks', '~> 5.2', '>= 5.2.1'
group :development, :test do
gem 'byebug', '~> 11.1', '>= 11.1.3', platforms: [:mri, :mingw, :x64_mingw]
# Custom gems:
gem 'database_cleaner', '~> 1.8', '>= 1.8.4'
gem 'simplecov', '~> 0.17.1'
gem 'shoulda-matchers', '~> 4.3'
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.4'
gem 'rspec-rails', '~> 4.0'
gem 'factory_bot_rails', '~> 5.1', '>= 5.1.1'
gem 'faker', '~> 2.11'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '~> 4.0', '>= 4.0.1'
gem 'listen', '~> 3.2', '>= 3.2.1'
gem 'spring', '~> 2.1'
gem 'spring-watcher-listen', '~> 2.0', '>= 2.0.1'
# Custom gems:
gem 'brakeman', '~> 4.8', '>= 4.8.1'
gem 'bundler-audit', '~> 0.9.0.1'
end
group :test do
gem 'capybara', '~> 3.32', '>= 3.32.1'
gem 'selenium-webdriver', '~> 4.0', '>= 4.0.3'
gem 'webdrivers', '~> 4.3'
gem 'webmock', '~> 3.8', '>= 3.8.3'
end
## Custom Gems:
gem 'figaro', '~> 1.1', '>= 1.1.1'
gem 'devise', '~> 4.7', '>= 4.7.1'
gem 'active_model_otp', :git => 'https://github.com/heapsource/active_model_otp.git'
gem 'sidekiq', '~> 6.4'
gem 'rack-attack', '~> 6.3'
gem 'redis', '~> 4.1', '>= 4.1.3'
gem 'administrate', '~> 0.16.0'