-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
72 lines (64 loc) · 1.58 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 '3.3.5'
gem 'rails', '~> 7.2.2'
gem 'mysql2', '~> 0.5.6'
gem 'sassc-rails'
gem 'sprockets-rails'
gem 'uglifier', '>= 3.0.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rack-cors', '~> 1.1.0'
gem 'rack', '>= 2.2.6.3'
gem 'websocket-extensions', '>= 0.1.5'
gem 'devise'
gem 'omniauth-discord'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'bootstrap', '~> 4.6.2'
gem 'jquery-rails'
gem 'font_awesome5_rails'
gem 'will_paginate'
gem 'will_paginate-bootstrap4'
gem 'clipboard-rails'
gem 'sortable-rails'
gem 'momentjs-rails'
gem 'js_cookie_rails'
gem 'rails_bootstrap_sortable'
gem 'i18n-js', '3.9.1'
gem 'lograge'
gem 'whenever'
gem 'ransack'
gem 'chunky_png'
gem 'sprite-factory', github: 'mattantonelli/sprite-factory', branch: 'master'
gem 'redis-namespace'
gem 'traco'
gem 'rest-client'
gem 'paper_trail', '~> 16.0.0'
gem 'sidekiq', '~> 6.5.8'
gem 'sidekiq-failures', '~> 1.0.0'
gem 'activejob-uniqueness'
gem 'nokogiri', '>= 1.13.6'
gem 'friendly_id', '~> 5.4.0'
gem 'csv'
gem 'ostruct'
# Discord interactions
gem 'ed25519'
gem 'discordrb-webhooks', '3.3.0'
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'puma'
gem 'annotate'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rack-mini-profiler'
gem 'i18n_yaml_sorter'
gem 'capistrano', '3.19.2'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'capistrano-rails'
gem 'capistrano-sidekiq'
gem 'bcrypt_pbkdf'
end