-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
156 lines (113 loc) · 2.97 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
source 'https://rubygems.org'
gem 'rails', '3.2.22.5'
# all things xml
gem 'nokogiri'
# data
gem 'mysql2'
# speed up sppppppprooooockets
gem 'turbo-sprockets-rails3'
# Gems used only for assets and not required
# in production environments by default.
gem 'uglifier', '>= 1.0.3'
group :assets do
gem 'sass-rails', '~> 3.2.4'
gem 'coffee-rails', '~> 3.2.1'
gem 'jquery-ui-rails'
# files for bootstrap-in-asset-pipeline integration
gem 'bootstrap-sass', '~> 3.1.1.1'
# extension's packaging of html5shiv for the asset pipeline
gem 'extension-html5shiv-rails', :require => 'html5shiv-rails', :source => 'https://engineering.extension.org/rubygems/'
# replaces glyphicons
gem 'font-awesome-rails'
# select2 asset packaging - used for tag and filter interfaces
gem "select2-rails"
end
# legacy data support
gem 'safe_attributes'
# mobile device detection
gem 'mobile-fu'
# server settings
gem "rails_config"
# jquery magick
gem 'jquery-rails', '~> 3.1.3'
# pagination
gem 'kaminari'
# Deploy with Capistrano
gem 'capistrano', '~> 2.15.5'
gem 'capatross'
# background jobs
gem 'sidekiq'
gem 'sinatra'
# command line tools
gem 'thor'
# To use Jbuilder templates for JSON
gem 'jbuilder'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# exception handling
gem 'honeybadger'
# caching
gem 'redis-rails'
# openid
gem "ruby-openid", :require => 'openid'
# rest posts
gem 'rest-client'
# validation helpers
# uses the Mail gem to validate email: https://github.com/hallelujah/valid_email
gem 'valid_email'
# used to post-process mail to convert styles to inline
gem "csspool"
gem "inline-style", "0.5.2ex", :source => 'https://engineering.extension.org/rubygems/'
# tokens and such
gem 'hashids'
# html scrubbing
gem "loofah", "~> 2.2.3"
# useragent analysis
gem 'useragent'
# ip to geo mapping
gem 'geocoder'
gem 'geoip'
# breadcrumbs
gem "breadcrumbs_on_rails"
# php db munging
gem "php_serialize"
# text cleanup
gem "auto_strip_attributes", "~> 2.0"
# catch rack errors
gem 'rack-robustness'
# terse logging
gem 'lograge'
# google api
gem 'googleauth'
gem 'google-api-client'
# backport of handling json parser errors
gem 'robust_params_parser'
# slack integration
gem "slack-notifier"
# markdown markup
gem 'reverse_markdown'
# image upload and processing
gem 'rmagick'
gem 'carrierwave', "0.10.0ex", :source => 'https://engineering.extension.org/rubygems/'
# Ruby 2.2 requirement
gem 'test-unit'
# handle the issue with the community scoping
gem 'unscoped_associations'
# bot detection
gem 'voight_kampff'
group :development do
# require the powder gem for those still using pow.cx
gem 'powder'
# require puma for those switching to puma
gem 'puma'
# including httpclient explicitly so that we can use httplog in development for google api requests
gem 'httpclient'
gem 'httplog'
gem 'pry'
# footnotes
#gem 'rails-footnotes', '>= 3.7.5.rc4'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end