-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
92 lines (69 loc) · 1.65 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
source 'https://rubygems.org'
gem 'rails', '3.2.22.5'
# all things xml
gem 'nokogiri'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# storage
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
# speed up sppppppprooooockets
gem 'turbo-sprockets-rails3'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
# files for bootstrap-in-asset-pipeline integration
gem 'bootstrap-sass', '~> 3.1.1'
# wysihtml5 + bootstrap + asset pipeline
gem 'bootstrap-wysihtml5-rails'
# replaces glyphicons
gem 'font-awesome-rails'
end
# server settings
gem "rails_config"
# authentication
gem 'omniauth', "~> 1.0"
gem 'omniauth-openid'
# jquery magick
gem 'jquery-rails'
# pagination
gem 'kaminari'
# Deploy with Capistrano
gem 'capistrano', '~> 2.15.5'
gem 'capatross', :source => 'https://engineering.extension.org/rubygems'
# exception handling for now
gem 'honeybadger'
# background jobs
gem 'sidekiq', '~> 2.17.7'
# slack integration
gem "slack-notifier"
# command line integration
gem 'thor'
# oauth
gem 'doorkeeper'
# cache
gem 'redis-rails'
# html sanitization
gem 'loofah'
# breadcrumbs
gem "breadcrumbs_on_rails"
# log handling
gem "lograge"
# sidekiq web monitoring
gem 'sinatra', :require => nil
# Ruby 2.2 wtf
gem 'test-unit'
group :development do
# require the powder gem
gem 'powder'
gem 'pry'
gem 'quiet_assets'
gem 'httplog'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end