forked from adhocteam/cohorts-open
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
224 lines (164 loc) · 4.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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.3.7'
gem 'rails', '~> 4.2.0'
gem 'pg', '~> 0.15'
gem 'redis'
gem 'mail', '2.6.3'
# Use puma as the app server
gem 'puma'
# Use HAML for views
gem 'haml-rails'
# Use Semantic UI for UI
gem 'less-rails-semantic_ui'
gem 'autoprefixer-rails'
# Use old Sprockets to avoid deprecation warnings
gem 'sprockets', '3.6.3'
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.0.1'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# AWS
gem 'aws-sdk'
# include health_check, for system monitoring
gem 'health_check'
# use holder for placeholder images
gem 'holder_rails'
# use devise for auth/identity
gem 'devise', '~>4.2.0'
# two-factor auth
gem 'two_factor_authentication'
# use gibbon for easy Mailchimp API access
gem 'gibbon'
# use twilio-ruby for twilio
gem 'twilio-ruby'
# Mandrill
gem 'mandrill-api'
gem 'mandrill-rails'
# use Wuparty for wufoo
gem 'wuparty'
# Use gsm_encoder to help text messages send correctly
gem 'gsm_encoder'
# use Delayed Job to queue messages
gem 'delayed_job_active_record'
gem 'daemons'
# for generating unique tokens for Person
gem 'has_secure_token'
# phone number validation
gem 'phony_rails'
# zip code validation
gem 'validates_zipcode'
# in place editing
gem 'best_in_place', '~> 3.0.1'
# validation for new persons on the public page.
gem 'jquery-validation-rails'
# make ical events and feeds
# gem 'icalendar'
# cron jobs for backups and sending reminders
gem 'whenever', require: false
# handling emoji!
gem 'emoji'
# auditing.
gem 'paper_trail'
gem 'paper_trail-globalid'
gem 'fast_blank' # blank? rewritten in c
# gem 'faster_path' # soon! path, rewitted in rust. requires rust compiler
# storing money with money-rails
gem 'money-rails'
# masked inputs
gem 'maskedinput-rails'
# Need a non-digested asset for Wufoo CSS
gem 'non-stupid-digest-assets'
# Allow composite primary keys for join tables
gem 'composite_primary_keys'
# File attachments
gem 'paperclip', '~> 5.0.0'
# WYSIWYG editor
gem 'trix'
# Page slugs
gem 'friendly_id', '~> 5.1.0'
# Elasticsearch w/ searchkick
gem 'searchkick', '~> 1.5'
gem 'elasticsearch', '>= 1.0.15'
gem 'faraday_middleware-aws-signers-v4'
# Pagination
gem 'kaminari'
# Google Gems
gem 'omniauth-google-oauth2'
gem 'google-api-client', require: ['google/api_client/client_secrets', 'google/apis/gmail_v1', 'google/apis/calendar_v3']
group :development do
# this whole group makes finding performance issues much friendlier
gem 'rack-mini-profiler'
gem 'flamegraph'
gem 'stackprof' # ruby 2.1+ only
gem 'memory_profiler'
gem 'ruby-prof'
# n+1 killer.
gem 'bullet'
# what attributes does this model actually have?
gem 'annotate'
# a console in your tests, to find out what's actually happening
gem 'pry-rails'
# a console in your browser, when you want to interrogate views.
gem 'web-console'
# silences logging of requests for assets
gem 'quiet_assets'
# for generating favicons
gem 'rails_real_favicon'
gem 'clipboard'
gem 'ffi', platforms: [:mswin, :mingw]
end
# Use rails 12factor for staging and production
group :staging, :production do
gem 'rails_12factor'
end
group :production do
gem 'newrelic_rpm'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.0.3'
end
group :test do
# mock tests w/mocha
gem 'mocha', require: false
gem 'email_spec'
gem 'sqlite3', platform: [:ruby, :mswin, :mingw]
# for JRuby
gem 'jdbc-sqlite3', platform: :jruby
gem 'memory_test_fix' # in memory DB, for the speedy
# generate fake data w/faker: http://rubydoc.info/github/stympy/faker/master/frames
gem 'faker'
gem 'rubocop', require: false
gem 'simplecov', require: false
# screenshots when capybara fails
gem 'capybara-screenshot'
# retry poltergeist specs. they are finicky
gem 'rspec-retry'
# calendaring tests will almost always break on saturdays.
gem 'timecop'
# in memory redis for testing only
gem 'mock_redis'
gem 'webmock'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0'
gem 'capybara'
gem 'capybara-email'
gem 'factory_girl_rails'
gem 'pry'
gem 'byebug'
gem 'shoulda-matchers', '~> 3.1.1', require: false
gem 'database_cleaner'
gem 'capybara-webkit'
gem 'sms-spec'
gem 'dotenv-rails'
end