forked from Avicus/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·84 lines (71 loc) · 1.74 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
source 'https://rubygems.org'
# Active support shit
gem 'activesupport', '~> 5.1', '>= 5.1.3'
gem 'concurrent-ruby', '~> 1.0', '>= 1.0.2'
gem 'i18n', '~> 0.9.3'
gem 'minitest', '~> 5.1'
gem 'tzinfo', '~> 1.1'
# Forums
gem 'impressionist', git: 'https://github.com/charlotte-ruby/impressionist.git'
gem 'unread', '~> 0.6.1'
gem 'nokogiri'
gem 'sanitize'
gem 'acts-as-taggable-on', '~> 5.0.0'
# Paginate
gem 'will_paginate', '~> 3.0'
gem 'bootstrap-will_paginate'
# Charts
gem 'chartkick'
gem 'groupdate'
# Miscellaneous
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'rufus-scheduler'
gem 'bcrypt'
gem 'redcarpet'
gem 'blazer'
gem 'twitch', '~> 0.1.3', :git => 'https://github.com/xdsemx/twitch-rb'
# DB
gem 'mysql2', '~> 0.3.18'
gem 'redis'
gem 'active_record_query_trace'
# System
gem 'unicorn'
gem 'rails', '5.1.3'
gem 'haml'
gem 'haml-rails'
gem 'active_model_serializers'
gem 'puma'
# Daemon
gem 'daemons'
gem 'discordrb', git: '[email protected]:meew0/discordrb.git'
# API
gem 'graphql'
gem 'graphql_java_gen', git: '[email protected]:Avicus/graphql_java_gen.git'
gem 'graphql-batch'
# Peek
gem 'peek'
gem 'peek-mysql2'
gem 'peek-redis'
gem 'peek-rblineprof'
gem 'peek-performance_bar'
gem 'peek-git'
gem 'coffee-rails'
# UI
gem 'sass-rails'
gem 'jquery-rails'
gem 'simple_calendar', '~> 2.0'
gem 'mail_form'
gem 'bootstrap-datepicker-rails'
gem "font-awesome-rails"
# Capistrano
group :development do
gem 'capistrano', '~> 3.5.0'
gem 'capistrano-rbenv'
gem 'capistrano3-unicorn'
gem 'capistrano-rails'
gem 'listen'
gem 'capistrano-rails-console'
gem 'capistrano-git-submodule-strategy', '~> 0.1', :github => 'ekho/capistrano-git-submodule-strategy'
gem 'capistrano-faster-assets', '~> 1.0'
end
gem 'graphiql-rails', group: :development