-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
210 lines (160 loc) · 5.1 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
source 'https://rubygems.org'
ruby '2.5.5'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# NOTE: IMPORTANT for this to be first so that gems e.g. omniauth-ideo
# can pull in the right ENV vars
# ENV variables in dev
gem 'dotenv-rails', groups: %i[development test], require: 'dotenv/rails-now'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1'
# Use Puma as the app server
gem 'puma', '~> 4.3.1'
# Use SCSS for stylesheets
gem 'autoprefixer-rails'
gem 'normalize-rails', '~> 4.1'
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Devise for auth
gem 'devise', '~> 4.7.1'
gem 'omniauth-ideo', git: 'https://github.com/ideo/omniauth-ideo.git'
# Consumer for IDEO Network JSON APIs
gem 'network-api-ruby', git: 'https://github.com/ideo/network-api-ruby.git'
# Webpacker
gem 'webpacker', '>= 4.0.0'
# JSON serializer
gem 'jsonapi-rails'
# For defining user abilities
gem 'cancancan', '~> 2.0'
# For assigning user roles
gem 'rolify', '~> 5.2.0'
# Exception notification
gem 'appsignal'
gem 'sentry-raven'
# Easy DSL for cloning AR objects
gem 'amoeba'
# Background processing
gem 'sidekiq', '~> 6'
gem 'sidekiq-scheduler'
# ElasticSearch wrapper
gem 'searchkick', '~> 4.1.0'
# see https://github.com/elastic/elasticsearch-ruby/issues/669
gem 'elasticsearch', '~> 6'
# For taggable collections/items
gem 'acts-as-taggable-on', '~> 6.0.0'
# middleware for 301 redirects
gem 'rack-rewrite', '~> 1.5'
# for CORS requests (specifically for CDN handling)
gem 'rack-cors', '~> 1.0.1'
# Filestack API Wrapper
gem 'filestack', '~> 2.6.1'
# inline styles for email
gem 'roadie-rails', '~> 1.3'
# For easier http request
gem 'httparty'
# Redis in-memory caching
gem 'redis', '~> 4.1'
# memcache
gem 'dalli', '~> 2.7'
gem 'bootsnap', require: false
# easy pagination
gem 'kaminari', '~> 1.2'
# google auth + firestore
gem 'google-cloud-firestore', '~> 0.21.0'
gem 'jwt', '~> 1.5'
# looking up records by slug
gem 'friendly_id', '~> 5.2.0'
# State machine for ruby classes
gem 'aasm', '~> 5.0'
# mailchimp API
gem 'gibbon', '~> 3.2'
# distributed mutex
gem 'redis-mutex', '~> 4.0.1'
gem 'oj'
gem 'scout_apm'
# phone number normalization
gem 'phony'
# sending sms messages
gem 'twilio-ruby'
# Nice patterns for service objects
gem 'interactor'
gem 'interactor-schema'
# Double-entry accounting system
gem 'double_entry', '~> 2.0.0.beta1'
# custom wrapper for globalize gem
gem 'ideo-translation', git: 'https://github.com/ideo/ideo-translation.git'
gem 'globalize-accessors', ref: '2bf2bde' # Latest commit on master to get dirty tracking
gem 'slack-ruby-client'
# Text helper to provide possessive strings
gem 'possessive'
gem 'activerecord-import'
# Helper for writing union queries
gem 'active_record_union'
gem 'schmooze', require: false
# Faker needed for generating fake names
gem 'faker', '~> 1.9.5'
# Anycable for more performant ActionCable
# Note: you must `brew install anycable-go` if you want to run it locally
# See: https://docs.anycable.io/#/using_with_rails
gem 'anycable-rails', '~> 1.0', groups: %i[development production]
gem 'rails_same_site_cookie'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'action-cable-testing'
gem 'active_record_query_trace'
gem 'capybara', '~> 2.13'
gem 'crystalball'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'lefthook'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 3.9'
end
group :development do
# annotate models with schema attributes
gem 'annotate' # https://github.com/ctran/annotate_models
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'better_errors'
gem 'binding_of_caller'
gem 'derailed_benchmarks'
gem 'guard', require: false
gem 'guard-rspec', require: false
gem 'rubocop', require: false
gem 'rubocop-daemon', require: false
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'stackprof'
end
group :test do
gem 'fakeredis', require: 'fakeredis/rspec'
gem 'json-schema'
gem 'shoulda-matchers', '~> 3.1'
gem 'vcr'
gem 'webmock'
gem 'timecop'
gem 'jsonapi_spec_helpers'
end
group :production do
gem 'heroku-deflater', github: 'ideo/heroku-deflater'
# https://devcenter.heroku.com/articles/rails-autoscale
gem 'rails_autoscale_agent'
# performance tuning
gem 'tunemygc'
gem 'barnes'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]