-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
68 lines (61 loc) · 1.69 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'rails', '~> 7.0.0'
gem 'mysql2'
gem 'puma', '~> 5.6'
gem 'sass-rails', '>= 6'
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage image variants
gem 'image_processing', '~> 1.12'
gem 'active_storage_validations'
gem 'activerecord-nulldb-adapter'
gem 'acts-as-taggable-on', '~> 9.0'
gem 'addressable'
gem 'audited'
gem 'aws-sdk-s3', require: false
gem 'bootstrap'
gem 'jquery-rails'
gem 'devise'
gem 'exception_notification'
gem 'font-awesome-sass'
gem 'kaminari'
gem 'mini_racer'
gem 'pundit'
gem 'ransack'
gem 'redcarpet'
gem 'sprockets'
gem 'sprockets-rails', require: 'sprockets/railtie'
group :development, :test do
gem 'amazing_print'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry-byebug'
end
group :development do
gem 'ed25519'
gem 'bcrypt_pbkdf'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen'#, '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-commands-rspec'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'factory_bot'
gem 'factory_bot_rails'
gem 'faker'
gem 'rails-controller-testing'
gem 'rspec'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'simplecov', require: false
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end