-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
160 lines (115 loc) · 2.73 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
157
158
159
160
source 'http://rubygems.org'
gem 'rails', "3.2.22.5"
# 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.4"
gem 'coffee-rails', "~> 3.2.2"
gem 'uglifier', '>= 1.0.3'
gem 'jqtools-rails'
end
# xml parsing
gem 'nokogiri', "~> 1.10.4"
# jquery
gem 'jquery-rails'
# bootstrap in sass in rails
gem 'bootstrap-sass', '~> 3.1.1'
# wysihtml5 + bootstrap + asset pipeline
gem 'bootstrap-wysihtml5-rails'
# select2 asset packaging - used for filter interfaces
gem "select2-rails"
# jqplot
gem 'outfielding-jqplot-rails'
# replaces glyphicons
gem 'font-awesome-rails'
# storage
gem 'mysql2'
# image upload
gem "paperclip", "~> 3.0"
# image processing
gem 'rmagick'
# ip to geo mapping
gem 'geocoder'
gem 'geoip'
# authentication
gem 'omniauth-openid'
# oauth integration
gem 'omniauth', "~> 1.0"
# to enable Google Tag Manager
gem 'rack-tracker', "1.1.0ex", :source => 'https://engineering.extension.org/rubygems'
# pagination
gem 'kaminari'
# revision history
gem 'paper_trail', '~> 2', :source => 'http://rubygems.org/'
# diffs
gem 'diffy'
# server settings
gem "rails_config"
# exception notification
gem 'honeybadger'
# auto strip spaces out of attributes of models
gem "auto_strip_attributes", "~> 2.0"
# html scrubbing
gem "loofah", '~> 2.3.0'
# htmlentities conversion
gem "htmlentities"
# elasticsearch
gem "chewy"
# used to post-process mail to convert styles to inline
gem "csspool"
gem "inline-style", "0.5.2ex", source: 'https://engineering.extension.org/rubygems'
# auto_link replacement
gem "rinku", :require => 'rails_rinku'
# sidekiq - must come before delayed job in the gemfile
gem 'sidekiq', '< 3'
gem 'sinatra', '< 2'
# delayed_job
# gem "delayed_job"
# gem 'delayed_job_active_record'
# gem "daemons"
# tropo - sms messages
# gem "tropo-webapi-ruby"
# command line scripts
gem "thor"
# anti-spam test
gem 'rakismet'
# memcached
gem 'dalli'
# useragent analysis
gem 'useragent'
# catch rack errors
gem 'rack-robustness'
# terse logging
gem 'lograge'
# remove emoji
gem 'demoji'
# additional help in blocking apps
gem 'rack-attack'
# Ruby 2.2 requirement
gem 'test-unit'
# spam prevention
gem 'invisible_captcha'
# bot detection
gem 'voight_kampff'
#New Relic
gem 'newrelic_rpm'
group :development do
# require the powder gem
gem 'powder'
# require puma for those switching to puma
gem 'puma'
# rails3 compatible generators
gem "rails3-generators"
gem 'capistrano', '~> 2.15'
gem 'capatross'
gem 'quiet_assets'
gem 'pry'
# gem 'net-http-spy'
# pretty error handling
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'active_record_query_trace'
end