-
Notifications
You must be signed in to change notification settings - Fork 42
/
Gemfile
178 lines (147 loc) · 4.17 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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '~> 4.1.0'
gem 'smailer', :git => 'https://github.com/bborn/smailer.git'
gem 'aws-ses'
gem 'aasm'
gem "hirefire-resource"
# gem 'medium-editor-rails'
gem 'ckeditor'
gem 'mini_magick'
gem 'fog'
gem "fog-aws"
gem 'carrierwave'
gem 'codemirror-rails'
gem 'html_to_plain_text'
gem 'smarter_csv'
gem 'staccato'
gem 'feedjira'
gem 'kaminari'
gem 'bootstrap-kaminari-views'
gem "chartkick"
gem 'groupdate'
gem 'heuristics'
gem "chronic"
#
# 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 "sentry-raven"
# 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'
# 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'
gem 'font-awesome-sass'
# gem 'bourbon'
# gem 'neat'
# gem 'country_select'
# Email
gem 'premailer-rails'
# Authentication
gem 'devise'
gem 'cancan'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
# gem 'omniauth-persona'
# gem 'omniauth-google-oauth2'
# gem 'omniauth-linkedin'
# Admin
gem 'rails_admin'
# Workers
gem 'sidekiq'
gem 'sidekiq-unique-jobs'
gem 'sidekiq-throttler'
gem 'devise-async'
gem 'sinatra', require: false
# Utils
gem 'addressable'
gem 'settingslogic'
group :development do
# Docs
gem 'sdoc', require: false # bundle exec rake doc:rails
# Errors
# gem 'better_errors'
# gem 'binding_of_caller' # extra features for better_errors
# gem 'meta_request' # for rails_panel chrome extension
# Deployment
# gem 'capistrano'
# 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 pring 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 "mysql2"
gem 'dalli' # memcached
gem 'memcachier' # heroku add-on for auto config of dalli
gem 'unicorn'
gem 'rails_12factor' # https://devcenter.heroku.com/articles/rails4
end