-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
92 lines (70 loc) · 2.37 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
84
85
86
87
88
89
90
91
92
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '~> 5.0'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Authorisation / authentication
gem 'devise'
gem 'doorkeeper'
gem 'rack-attack'
gem 'recaptcha'
# Pagination
gem 'api-pagination'
gem 'kaminari'
gem 'paper_trail'
gem 'mailjet'
gem 'net-http' # Silence spurious warnings, see https://github.com/ruby/net-protocol/issues/10
gem 'rswag'
group :development, :test do
gem 'brakeman'
gem 'bundler-audit'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'flay'
gem 'foreman'
gem 'pry'
gem 'pry-byebug'
# TODO: See https://github.com/pry/pry-coolline/issues/36
# gem 'pry-coolline', github: 'owst/pry-coolline', branch: 'support_new_pry_config_api'
# gem 'pry-coolline'
gem 'pry-stack_explorer'
gem 'rspec-rails'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubycritic', require: false
gem 'timecop'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# 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', '~> 2.0.0'
end
group :test do
gem 'rails-controller-testing'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'tailwindcss-rails', '~> 2.0'
# Use Redis for Action Cable
gem 'redis', '~> 4.0'