-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
83 lines (75 loc) · 1.97 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
75
76
77
78
79
80
81
82
83
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'bootsnap', require: false
gem 'cable_ready'
gem 'dotiw'
gem 'dry-initializer'
gem 'dry-struct'
gem 'dry-types'
gem 'faraday'
gem 'hotwire-rails'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'kaminari'
gem 'net-ftp'
gem 'os'
gem 'progressbar'
gem 'puma'
gem 'rails'
gem 'rainbow'
gem 'sass-rails'
gem 'shakapacker'
gem 'simple_form'
gem 'slack-notifier'
gem 'sprockets-rails'
gem 'sqlite3'
gem 'stimulus-rails'
gem 'sys-filesystem'
gem 'text'
gem 'view_component'
gem 'wisper'
gem 'workflow'
group :development, :test do
gem 'annotate'
gem 'awesome_print'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-github', require: false
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-discourse', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'shoulda-matchers'
gem 'super_diff'
gem 'timecop'
gem 'vcr'
gem 'webmock'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen'
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Rack Mini Profiler
gem 'flamegraph'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]