-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
101 lines (84 loc) · 2.42 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
source 'https://rubygems.org'
ruby "2.2.0"
gem 'rails', '~> 4.2'
gem 'mysql2', '> 0.3'
# gem 'execjs'
gem 'nokogiri'
gem 'rails-observers'
gem 'browser'
gem 'paperclip'
# Forums
gem 'forem', :github => "radar/forem", :branch => "rails4"
gem 'forem-theme-base', :github => 'radar/forem-theme-base'
gem 'forem-rdiscount'
gem 'will_paginate', '3.0.5'
# git for checkbox yes/no live updating fix
gem 'best_in_place', "~> 3.0", :git => 'git://github.com/bernat/best_in_place.git', :ref => "fd40a44"
# use Omniauth gems for authenticating users
gem 'omniauth-steam'
gem 'omniauth-bnet'
gem 'omniauth-twitter'
# WYSIWYG
gem 'summernote-rails'
gem 'font-awesome-rails' # required???
# Misc APIS
gem 'twitter'
gem 'dota', :git => 'git://github.com/nashby/dota.git'
gem 'stripe'
gem 'paypal-express'
gem 'icalendar' # Ical support
gem 'kappa', '~> 1.0' # Twitch API
gem 'staccato' # Google Analytics Measurement Protocol
# gem for managing environment variables (steam webapi key)
gem 'figaro'
gem 'slack-notifier'
gem 'whenever', :require => false
# Bracketing solutions
gem 'challonge-api'
gem 'bracket_tree'
gem 'rubin' # round robin
gem 'rrschedule' #, git: 'https://github.com/wlangstroth/rrschedule.git'
group :development do
gem 'tzinfo-data'
gem 'coffee-script-source', '1.8.0' #Windows doesn't like CS 1.9
end
group :production do
# Using git for slack notifier support
gem "exception_notification", :git => 'https://github.com/smartinez87/exception_notification.git'
gem 'therubyracer' # execjs
gem "oink" # for doing memory analysis
gem 'memcachier' # Old style for Heroku
# gem 'dalli' # Old style for Heroku
gem 'aws-sdk', '< 2.0'
gem 'mandrill-api'
gem 'redis-rails'
gem 'unicorn'
gem 'rails_12factor'
gem 'rack-cors', :require => 'rack/cors'
end
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 1.2'
# Asset Related
gem 'uglifier', '>= 1.0.3'
gem 'select2-rails'
gem 'sass-rails'
gem 'autoprefixer-rails'
gem 'bootstrap-sass'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-datatables-rails'
gem 'bootstrap-typeahead-rails'
# Deploy with Capistrano
gem 'capistrano', '~> 3.4'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'cap-ec2'
gem 'capistrano-linked-files'
gem 'capistrano-unicorn-nginx'
gem 'slackistrano', :require => nil
# gem 'capistrano3-unicorn'
# gem 'sepastian-capistrano3-unicorn'
# To use debugger
# gem 'debugger'