-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (56 loc) · 1.85 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.1"
# Basic stuff
gem "rails", "~> 6.0.4"
gem "mysql2", "~> 0.5.3"
gem "haml-rails", "~> 2.0.0"
# Use devise for user management
gem "devise", "~> 4.8"
gem "two_factor_authentication", "~> 2.1"
gem "rqrcode", "~> 2.1"
# Other useful gems
gem "will_paginate", "~> 3.3"
gem "babosa", "~> 2.0"
gem "jbuilder", "~> 2.11"
gem "image_processing", "~> 1.12"
gem "simple_ar_localizer", "~> 1.0"
gem "browser", "~> 5.3.0"
gem "rouge", "~> 3.26.1"
# Use scenic to make stats easier
gem "scenic", "~> 1.5.4"
gem "scenic-mysql", "~> 0.1.0"
# And sidekiq for processing
gem "sidekiq", "~> 6.4"
gem "sidekiq-cron", "~> 1.2"
gem "sidekiq-failures", "~> 1.0"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# Stuff used in rake
gem "colorize", "~> 0.8.1"
gem "rake-progressbar", "~> 0.0.5", require: false
group :development do
# Use Puma as the app server
gem "puma", "~> 5.6"
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.8"
# 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"
# Let’s pull in some prettyprint
gem "awesome_print", "~> 1.8"
# Capistrano is awesome
gem "capistrano", "~> 3.16.0"
gem "capistrano-bundler", "~> 2.0.1"
gem "capistrano-rails", "~> 1.6.1"
gem "capistrano-rvm", "~> 0.1.2"
gem "capistrano-passenger", "~> 0.2.1"
gem "capistrano-sidekiq", "~> 2.0.0"
gem "ed25519", "~> 1.2.4"
gem "bcrypt_pbkdf", "~> 1.1.0"
# Also let’s use pry
gem "pry", "~> 0.14.1"
# shush!
gem "active_storage_silent_logs", "~> 0.1.1"
end