forked from quinn/empirical-grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
193 lines (160 loc) · 3.51 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
source 'https://rubygems.org'
ruby '2.3.1'
# CORE DEPS
gem 'rails'
gem 'puma', '~> 3.10.0'
# EARLY TO APPLY TO OTHER GEMS
gem 'dotenv-rails'
# DB/MODEL
gem 'pg'
gem 'ancestry'
gem 'ransack'
gem 'ranked-model'
gem 'postgres_ext'
gem 'rails_admin', '1.2.0'
gem 'bulk_insert'
gem 'atomic_arrays'
# USER AUTH, ETC
gem 'bcrypt'
gem 'doorkeeper', '1.4.1' # must use 1.4.1 or > 2.0.0 - http://seclists.org/oss-sec/2014/q4/1076
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-clever'
gem 'cancancan'
gem 'firebase_token_generator'
gem 'rack-attack'
# EMAIL
gem 'premailer-rails'
# if you have trouble installing nokogiri on a mac,
# try uninstalling nokogiri, running `xcode-select --install`, and then `bundle install` once more
gem 'nokogiri' # required for premailer
# VALIDATIONS
gem 'validates_email_format_of'
# CONTROLLERS
gem 'responders'
# UPLOADS
gem 'carrierwave'
gem 'fog', require: 'fog/aws/storage'
# TIME
gem 'time_difference'
# OTHERS
gem 'global'
gem 'google-api-client', '0.8.6'
gem 'faraday_middleware'
gem 'newrelic_rpm'
gem 'skylight'
gem 'pointpin', '~> 1.0.0' #IP-GEOLOCATION
gem 'stripe'
gem 'prawn'
gem 'prawn-table'
gem 'pdf-core'
gem 'pdf-inspector'
gem 'ttfunk'
gem 'scout_apm'
gem 'rubyzip'
gem 'httparty'
# WEBSOCKETS
gem 'pusher'
# PARSING
gem 'parslet'
gem 'redcarpet'
gem 'addressable'
# QUEUE/CACHE
gem 'sidekiq'
gem 'sidekiq-retries'
gem 'redis'
gem 'redis-namespace'
gem 'redis-rails'
gem 'redis-rack-cache'
gem 'sinatra', '>= 1.3.0', :require => nil
# JS/APP/UI
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'select2-rails'
gem 'jbuilder'
gem 'active_link_to'
# METRICS
gem 'analytics-ruby', '~> 2.0.0', :require => 'segment/analytics'
# API
gem "active_model_serializers", '~> 0.9.0'
# UI HELPERS
gem 'sass'
gem 'sass-rails'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'slim-rails'
gem 'haml-rails'
gem 'es5-shim-rails'
# gem 'react-rails', '~> 1.6', '>= 1.6.2'
# gem 'react-rails-hot-loader'
gem "react_on_rails", "~> 6"
# ASSET/UI
gem 'therubyracer', require: false
gem 'uglifier', require: false
gem 'kaminari'
# MIDDLEWARE
gem 'rack-cache', '~> 1.6.1', require: 'rack/cache'
gem 'rack-cors', require: 'rack/cors'
gem 'rack-host-redirect'
# DEPLOYMENT
gem 'sentry-raven', '>= 0.12.2'
gem 'asset_sync'
gem 'rack-heartbeat'
# INTEGRATIONS
gem 'clever-ruby'
group :production, :staging do
gem 'rails_12factor'
gem 'lograge' # for making logs more dense
# gem "rack-timeout"
end
group :development do
gem 'bullet'
gem 'better_errors'
gem 'binding_of_caller', platforms: [:mri_21]
gem 'foreman'
gem "letter_opener"
gem 'spring'
gem 'spring-commands-rspec'
gem 'livingstyleguide'
end
gem "awesome_print"
group :test, :development do
gem "quiet_assets"
gem 'pry'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-coolline'
gem 'pry-rescue'
gem "rspec-rails"
gem 'fuubar', '~> 2.0.0.rc1'
gem "timecop"
gem "factory_bot", require: false
gem "factory_bot_rails", require: false
gem "database_cleaner"
gem 'byebug', '8.2.1' # getting errors on mac yosemite when trying to install 8.2.2
gem 'guard'
gem 'guard-rspec'
gem 'guard-shell'
gem 'terminal-notifier-guard'
gem 'teaspoon-mocha'
gem 'rspec-retry'
gem 'rspec-redis_helper'
gem 'brakeman'
gem 'faker'
end
group :test do
gem 'capybara'
gem 'poltergeist'
gem "vcr"
gem "webmock"
gem "codeclimate-test-reporter", require: nil
gem 'simplecov'
gem 'simplecov-json'
gem 'codecov'
end
# Memory profiling
gem 'puma_worker_killer'
gem 'sqreen'
# temp for migrations
gem 'paperclip'