-
Notifications
You must be signed in to change notification settings - Fork 21
/
Gemfile
74 lines (66 loc) · 1.75 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
69
70
71
72
73
74
source 'https://rubygems.org'
ruby '3.3.5'
gem 'rails', '>= 8.0.0'
gem 'pg'
gem 'puma'
gem 'bcrypt'
gem 'bugsnag'
gem 'createsend'
gem 'decent_exposure'
gem 'devise'
gem 'devise-multi_email'
gem 'icalendar'
gem 'inline_svg', '~> 1.9.0'
gem 'jbuilder'
gem 'kaminari'
gem 'premailer-rails'
gem 'pygmentize'
gem 'redcarpet'
gem "dartsass-rails", "~> 0.5.0"
gem 'validates_email_format_of'
gem 'warden' # use for auth
gem 'webpacker', '6.0.0.rc.6'
gem 'sprockets-rails' # as of Rails 7.0, this is optional
group :production do
gem 'rails_12factor'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a
# debugger console
gem 'byebug'
gem 'faker'
gem 'pry-rails'
gem 'pry-byebug'
gem 'rspec-rails', '~> 6.1.0'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'factory_bot_rails'
gem 'capybara'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
gem 'listen'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
gem 'spring-commands-rspec'
gem 'guard', require: false
gem 'guard-rspec', require: false
gem 'letter_opener'
gem 'letter_opener_web', '~> 3.0'
end
group :test do
gem 'capybara-email',
git: 'https://github.com/DavyJonesLocker/capybara-email.git',
branch: 'master',
ref: 'e1f61aa9b4'
gem 'rails-controller-testing'
gem "codeclimate-test-reporter", require: nil
gem "simplecov", require: nil
gem 'webmock'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]