-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
193 lines (136 loc) · 4.32 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.1.2'
##
# Rails
##
# http://rubyonrails.org/
gem 'rails', '4.1.1'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier'
gem 'coffee-rails'
##
##
# Backend
##
# https://github.com/bernat/best_in_place
gem 'best_in_place', :git => 'https://github.com/aaronchi/best_in_place.git'
# http://unicorn.bogomips.org/
gem 'unicorn', group: :production # server
# heroku dependencies
gem 'rails_12factor', group: :production
# https://bitbucket.org/ged/ruby-pg/wiki/Home
gem 'pg' # datastore
# https://github.com/drnic/composite_primary_keys
gem 'composite_primary_keys'
# https://github.com/josevalim/inherited_resources
gem 'inherited_resources' # DRY controllers
# https://github.com/mdeering/attribute_normalizer
gem 'attribute_normalizer', github: 'mdeering/attribute_normalizer' # various utilities to clean data
# https://github.com/mbleigh/seed-fu
gem 'seed-fu', github: 'mbleigh/seed-fu' # for seed data
# https://github.com/norman/friendly_id
gem 'friendly_id', '~> 5.0.0' # slugs
# https://github.com/PashaPodolsky/rails-bootstrap-markdown
gem 'rails-bootstrap-markdown', github: 'PashaPodolsky/rails-bootstrap-markdown'
# https://github.com/huacnlee/social-share-button
gem 'social-share-button'
# https://github.com/mislav/will_paginate
gem 'will_paginate', '~> 3.0'
# https://github.com/mileszs/wicked_pdf
gem 'wkhtmltopdf-binary'
gem 'wicked_pdf'
##
##
# Frontend
##
# https://github.com/indirect/jquery-rails
gem 'jquery-rails'
# https://github.com/joliss/jquery-ui-rails
gem 'jquery-ui-rails'
# https://github.com/slim-template/slim-rails
gem 'slim-rails' # slim templating, generate templates
# https://github.com/gettalong/kramdown
gem 'kramdown' # for slim's markdown engine
# https://github.com/plataformatec/responders
gem 'responders' # flash messages, among other things
# https://github.com/decioferreira/bootstrap-generators
gem 'bootstrap-generators', github: 'decioferreira/bootstrap-generators'
##
##
# Authentication, authorization
##
# http://devise.plataformatec.com.br/
gem 'devise', '~> 3.1.0' # authentication
# https://github.com/nathanl/authority
gem 'authority'
##
##
# Utitlities
##
# https://github.com/collectiveidea/delayed_job
gem 'delayed_job'
gem 'daemons' # required
# https://github.com/collectiveidea/delayed_job_active_record
gem 'delayed_job_active_record'
# https://github.com/mhfs/devise-async
gem 'devise-async' # send e-mails in background
# https://github.com/matthuhiggins/foreigner
gem 'foreigner'
# https://github.com/binarylogic/settingslogic
gem 'settingslogic' # manage application configuration, useful for whitelabeling
# https://github.com/schneems/maildown
gem 'maildown'
# https://github.com/37signals/mail_view
# this shouldn't be outside development, but otherwise we get constant errors in
# production
gem 'mail_view'
##
gem 'rack-timeout'
group :development do
# http://nadarei.co/mina/
gem 'mina', github: "nadarei/mina", :require => false # deployment
# https://github.com/adie/mina-scp
gem 'mina-scp', github: "adie/mina-scp", :require => false
# https://github.com/evrone/quiet_assets
gem 'quiet_assets' # make logs a little more readable
# https://github.com/charliesome/better_errors
gem "better_errors"
gem "binding_of_caller" # required
# https://github.com/presidentbeef/brakeman
gem 'brakeman', :require => false
# https://github.com/guard/guard-livereload
gem 'guard-livereload', require: false
gem "rack-livereload"
# https://github.com/ranmocy/guard-rails
gem 'guard-rails'
# https://github.com/guard/guard-bundler
gem 'guard-bundler'
# https://github.com/guard/guard-rspec
gem 'guard-rspec'
# https://github.com/sporkrb/spork-rails
gem 'spork-rails'
# https://github.com/guard/guard-spork
gem 'guard-spork'
# https://github.com/preston/railroady
gem 'railroady' # erd generator
end
group :development, :test do
# https://github.com/bkeepers/dotenv
gem 'dotenv-rails'
# https://github.com/rspec/rspec-rails
gem 'rspec-rails'
# https://github.com/jnicklas/capybara
gem 'capybara'
# https://github.com/bmabey/database_cleaner
gem 'database_cleaner'
# https://github.com/suranyami/guard-delayed
gem 'guard-delayed', github: 'jasl/guard-delayed'
end
group :darwin do
gem 'terminal-notifier-guard'
gem 'rb-fsevent', require: false
end
group :linux do
gem 'rb-inotify'
gem 'libnotify'
end