-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (53 loc) · 1.28 KB
/
Gemfile
File metadata and controls
59 lines (53 loc) · 1.28 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(File.join(__dir__, '.ruby-version'))
gem 'bootsnap', require: false
gem 'cssbundling-rails'
gem 'devise'
gem 'figaro'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'rails', '~> 7.0.2', '>= 7.0.2.3'
gem 'redis', '~> 4.0'
gem 'simple_form'
gem 'slim-rails'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
gem 'web-console'
end
group :development, :test do
gem 'brakeman', require: false
gem 'bullet'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'mdl', require: false
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-rails'
gem 'rexml'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'slim_lint', require: false
end
group :test do
gem 'capybara'
gem 'email_spec'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'super_diff'
gem 'webdrivers'
end