-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
218 lines (171 loc) · 6.14 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# #### #### #### #### #### #### #### #### #### #### #### #### #### #### #### ###
# COPY GEM'S BELOW
# #### #### #### #### #### #### #### #### #### #### #### #### #### #### #### ###
# ### ### ### ### ### ### ### ###
# Development
# ### ### ### ### ### ### ### ###
# Better Error Reporting
# https://github.com/charliesome/better_errors
gem "better_errors", group: [:development]
# Evaluate errors with context
# https://github.com/banister/binding_of_caller
gem "binding_of_caller", group: [:development]
# ### ### ### ### ### ### ### ###
# Benchmarking
# https://github.com/schneems/derailed_benchmarks#dynamic-app-benchmarking
# ### ### ### ### ### ### ### ###
# Bench mark your app
# https://github.com/schneems/derailed_benchmarks
# http://www.schneems.com/2015/05/11/how-ruby-uses-memory.html
gem 'derailed_benchmarks', group: [:development]
gem 'stackprof', group: [:development]
# Monitor the health and performance of your app
# https://github.com/newrelic/rpm
# Config: config/newrelic.yml
# Usage: Heroku Production
gem 'newrelic_rpm', groups: [:production]
# ### ### ### ### ### ### ### ###
# Authentication
# ### ### ### ### ### ### ### ###
# You may need to request from the source for Rails 5
# https://github.com/plataformatec/devise
# Config: config/environments/development.rb
# Config: config/initializers/devise.rb
gem 'devise', '~> 4.2.0'
# https://github.com/cowboyd/therubyracer
gem "therubyracer"
# https://github.com/omniauth/omniauth
# gem 'omniauth'
# Facebook OmniAuth Strategy https://github.com/mkdynamic/omniauth-facebook
# gem 'omniauth-facebook'
# https://github.com/arunagw/omniauth-twitter
# gem 'omniauth-twitter'
# https://github.com/skorks/omniauth-linkedin
# gem 'omniauth-linkedin'
# https://github.com/intridea/omniauth-github
#gem 'omniauth-github'
# ### ### ### ### ### ### ### ###
# Configuration
# ### ### ### ### ### ### ### ###
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
# This outputs JSON
# http://www.chrisjmendez.com/2016/07/04/rails-5-api-only-app/
# Config: config/initializers/active_model_serializers.rb
gem 'active_model_serializers'
# Store environmental variables away from git
# https://github.com/bkeepers/dotenv
gem 'dotenv-rails', groups: [:development, :test]
# Server Watcher
# https://github.com/alexch/rerun
gem 'rerun', groups: [:development, :test]
# Pagination
# https://github.com/kaminari/kaminari
gem 'kaminari'
# PrismJS.com for syntax highlighting
# https://github.com/PrismJS/prism
gem "prism-rails"
# ### ### ### ### ### ### ### ###
# Testing
# ### ### ### ### ### ### ### ###
# Populate db/seeds.rb with fake data
# https://github.com/stympy/faker
gem 'faker'
# Hash a password
# https://github.com/codahale/bcrypt-ruby
gem 'bcrypt'
# Programmatic testing using Rspec
# https://github.com/rspec/rspec-rails
gem 'rspec-rails', groups: [:development, :test]
# Automatically run tests through Rspec
# https://github.com/guard/guard-rspec
gem 'guard-rspec', require: false, groups: [:development, :test]
gem 'spring-commands-rspec', groups: [:development, :test]
# Real-time Rspec testing
# https://github.com/guard/guard-livereload
# Config: /Guardfile
gem 'guard-livereload', require: false, groups: [:development]
# Auto refresh the browser w/o a Chrome plug-in
# https://github.com/johnbintz/rack-livereload
# Config: config/environments/development.rb
gem "rack-livereload", group: [:development]
# Factory Girl for fixture replatement
# https://github.com/thoughtbot/factory_girl_rails
gem 'factory_girl_rails', groups: [:development, :test]
# Capybara for automated testing (w/o cucumber)
# https://github.com/teamcapybara/capybara
gem 'capybara', groups: [:test]
# ### ### ### ### ### ### ### ###
# Views
# ### ### ### ### ### ### ### ###
# Simplified Forms
# https://github.com/plataformatec/simple_form
gem 'simple_form', '~> 3.2', '>= 3.2.1'
# HAML templating engine
# https://github.com/indirect/haml-rails
gem 'haml-rails', '~> 0.9.0'
# Bootstrap templates
# https://github.com/twbs/bootstrap-rubygem
#gem 'bootstrap', '~> 4.0.0.alpha5'
# https://github.com/twbs/bootstrap-sass
gem 'bootstrap-sass', '~> 3.3.6'
# Easily include static pages
# https://github.com/thoughtbot/high_voltage
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
end
# Easily include static pages
# https://github.com/thoughtbot/high_voltage
gem 'high_voltage'
# Convert existing .erb to .haml
# https://github.com/dhl/erb2haml
gem 'erb2haml', groups: [:development]
# Font Awesome SASS
# https://github.com/FortAwesome/font-awesome-sass
gem 'font-awesome-sass'
# ### ### ### ### ### ### ### ###
# Logging
# ### ### ### ### ### ### ### ###
# Simple colored logging for Rails apps
# https://github.com/phallguy/shog
gem 'shog', groups: [:development, :test]
# Advanced Logging
# https://github.com/dwbutler/logstash-logger
# gem 'logstasher', groups: [:development, :test]
# ### ### ### ### ### ### ### ###
# Performance
# ### ### ### ### ### ### ### ###
# Used with Active Job for asynchronous messaging
# https://github.com/brandonhilkert/sucker_punch
gem 'sucker_punch', '~> 2.0'
# Memcache for caching pages and fragments
# https://github.com/petergoldstein/dalli
# Usage: Heroku Production
# Config: config/environments/production.rb
gem 'dalli', groups: [:production]
# ### ### ### ### ### ### ### ###
# App Specific Gems
# ### ### ### ### ### ### ### ###