-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
74 lines (60 loc) · 2.1 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) {|repo| "https://github.com/#{repo}.git"}
ruby '>= 3.2', '< 4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 6.4'
gem 'puma_worker_killer'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
gem 'dartsass-rails'
gem 'propshaft'
gem 'turbo-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.13'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# User Authorization
gem 'cancancan'
gem 'devise'
gem 'devise-i18n'
gem 'acts-as-taggable-on', '~> 12.0'
gem 'enum_help'
gem 'google-apis-youtube_v3', '~> 0.50'
gem 'i18n-js'
# Workaround until a new version is released that includes support for https://github.com/kaminari/kaminari/issues/1055
gem 'kaminari', git: 'https://github.com/kaminari/kaminari', ref: 'c7a46f17b2bc1d842a3fe4d0132709bc27e02402'
gem 'resque'
gem 'resque-scheduler'
gem 'sinatra', '~> 4.0.0' # Suppress Dependabot's PR
gem 'mail', '~> 2.8.1'
group :development do
gem 'brakeman'
gem 'bullet'
gem 'erb_lint', require: false
gem 'rubocop', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'web-console', '>= 3.3.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 3.3', require: false
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'minitest-ci'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'simplecov-cobertura', require: false
end
group :itamae do
gem 'itamae'
gem 'net-scp', '>= 3.0.0'
gem 'resurrected_god'
end