-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·171 lines (139 loc) · 4.31 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
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '~> 4.1.0'
#
# PLATFORM SPECIFIC
#
# OSX
# gem 'rb-fsevent', group: [:development, :test] # monitor file changes without hammering the disk
# gem 'terminal-notifier-guard', group: [:development] # notify terminal when specs run
# gem 'terminal-notifier', group: [:development]
# LINUX
gem 'rb-inotify', :group => [:development, :test] # monitor file changes without hammering the disk
# Monitoring
gem 'rack-timeout', '~> 0.1.0beta3'
gem 'newrelic_rpm'
#gem 'airbrake' # use with airbrake.io or errbit
# gem 'airbrake_user_attributes' # use with self-hosted errbit; see config/initializers/airbrake.rb
# gem 'rack-google-analytics'
# Data
gem 'pg'
gem 'schema_plus' # add better index and foreign key support
# gem 'jbuilder'
# Assets
gem 'sass-rails'
gem 'haml-rails'
gem 'simple_form'
gem 'uglifier'
gem 'headjs-rails'
# Javascript
gem 'jquery-rails'
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'nprogress-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# CoffeeScript
# Not needed in production if precompiling assets
gem 'coffee-rails'
# Uncomment if node.js is not installed
gem 'therubyracer', platforms: :ruby
# Design
gem 'bootstrap-sass', '~> 3.1.1'
gem 'autoprefixer-rails'
gem 'will_paginate-bootstrap'
# gem 'bourbon'
# gem 'neat'
# gem 'country_select'
# Search
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# Email
gem 'premailer-rails'
# Authentication
gem 'devise'
gem 'cancan'
gem 'omniauth', '~> 1.2'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
# gem 'omniauth-persona'
gem 'omniauth-google-oauth2'
# gem 'omniauth-linkedin'
# Admin
gem 'rails_admin'
# Workers
gem 'sidekiq'
gem 'devise-async'
gem 'sinatra', require: false
# Utils
gem 'addressable'
gem 'settingslogic'
# Google Maps
gem 'geocoder'
#gem 'gmaps4rails'
# Like/dislike of Reviews
#gem 'acts_as_votable', '~> 0.10.0'
group :development do
# Docs
gem 'sdoc', require: false # bundle exec rake doc:rails
# Errors
gem 'better_errors'
gem 'rails-footnotes', '>= 4.0.0', '<5'
# gem 'binding_of_caller' # extra features for better_errors
# gem 'meta_request' # for rails_panel chrome extension
# Deployment
# gem 'capistrano'
gem 'travis-lint'
# Guard
gem 'guard-rspec'
# gem 'guard-livereload'
# gem 'rack-livereload'
end
group :development, :test do
# Use spring or zeus
gem 'spring' # keep application running in the background
gem 'spring-commands-rspec'
# gem 'zeus' # required in gemfile for guard
# Debugging
# gem 'pry' # better than irb
# gem 'byebug' # ruby 2.0 debugger with built-in pry
gem 'pry-rails' # adds rails specific commands to pry
gem 'pry-byebug' # add debugging commands to pry
gem 'pry-stack_explorer' # navigate call stack
# gem 'pry-rescue' # start pry session on uncaught exception
# gem 'pry-doc' # browse docs from console
# gem 'pry-git' # add git support to console
# gem 'pry-remote' # connect remotely to pry console
# gem 'coolline' # sytax highlighting as you type
# gem 'coderay' # use with coolline
gem 'awesome_print' # pretty print debugging output
# Testing
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'ffaker'
gem 'capybara-webkit'
# gem 'poltergeist' # alternative to capybara-webkit
# gem 'capybara-firebug'
# gem 'launchy' # save_and_open_page support for rspec
# gem 'zeus-parallel_tests' # speed up lengthy tests
# Logging
gem 'quiet_assets'
end
group :test do
gem 'minitest' # include minitest to prevent require 'minitest/autorun' warnings
# Helpers
gem 'shoulda-matchers'
gem 'database_cleaner'
# gem 'timecop' # Mock Time
# Coverage
gem 'simplecov', require: false
# gem 'coveralls', :require => false
gem 'rspec-sidekiq'
end
group :production do
gem 'dalli' # memcached
gem 'memcachier' # heroku add-on for auto config of dalli
gem 'unicorn'
gem 'rails_12factor' # https://devcenter.heroku.com/articles/rails4
gem 'bonsai-elasticsearch-rails' # Initialize elasticsearch on Heroku
end