-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
59 lines (51 loc) · 1.17 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.6'
gem 'rails', '< 7.0'
gem 'bootsnap', require: false
gem 'appsignal'
gem 'dartsass-rails'
gem 'devise'
gem 'delayed_job_active_record'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'pg', '< 1.5'
gem 'puma'
gem 'mail-notify'
gem 'notifications-ruby-client'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'textacular'
gem 'will_paginate'
gem 'statesman'
group :development, :test do
gem 'dotenv-rails'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'brakeman', require: false
gem 'bundler-audit', require: false
end
group :development do
gem 'foreman'
gem 'listen'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'faker'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'pry'
gem 'timecop'
gem 'webmock'
end