This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
65 lines (56 loc) · 1.46 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.0'
gem 'rails', '~> 6.1.7.9'
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'lograge'
gem 'rack-cors', '1.1.0'
gem 'rack', '>= 2.2.6.3'
gem "websocket-extensions", ">= 0.1.5"
gem 'base64', '0.1.1' # Passenger requirement
gem 'devise'
gem 'omniauth-discord'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'bootstrap', '~> 4.3.1'
gem 'jquery-rails'
gem 'font-awesome-rails'
gem 'ransack', '~> 3.2.1'
gem 'chunky_png'
gem 'redis-namespace'
gem 'will_paginate'
gem 'will_paginate-bootstrap4'
gem 'traco'
gem 'rest-client'
gem 'whenever'
gem 'sortable-rails'
gem 'momentjs-rails'
gem 'rails_bootstrap_sortable'
# Discord interactions
gem 'ed25519'
gem 'discordrb-webhooks', '3.3.0'
# Compatibility fix for Rails 6 / Ruby 3.1. Should be resolved in Rails 7.0.1
gem 'net-imap', require: false
gem 'net-pop', require: false
gem 'net-smtp', require: false
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rack-mini-profiler'
end
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'puma', '~> 5.0'
gem 'annotate'
gem 'capistrano', '3.16.0'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'capistrano-rails'
end