-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile
133 lines (95 loc) · 2.3 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.5'
gem 'pg'
gem 'prawn'
gem 'prawn-fast-png'
gem 'ancestry'
gem 'russian'
gem 'draper'
gem 'sass-rails', '~> 4.0.1'
gem 'plupload-rails', github: 'gucki/plupload-rails'
gem 'coffee-rails', '~> 4.0.1'
gem 'therubyracer', platform: 'ruby'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'sugar-rails'
# to parse youtube and links
gem 'auto_html'
gem 'rails_autolink'
# markdown
gem 'rdiscount'
gem 'rails_config'
gem "compass-rails", github: 'Compass/compass-rails', branch: '2-0-stable'
gem "selectize-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'unicorn'
# Request sanitizer.
#
gem 'rack-utf8_sanitizer'
# We use slim for all the templates.
#
gem 'slim'
gem 'role-rails' # TODO replace with evil-front
gem 'oj'
# Exception reporting.
#
gem 'honeybadger'
# Authentication and authorization.
#
gem "devise", "~> 3.1.0"
gem 'devise-encryptable'
gem 'cancan'
gem 'carrierwave'
gem 'carrierwave-meta'
gem 'fog', '~> 1.3.1'
gem 'mini_magick'
gem 'rmagick', require: false
gem 'whenever'
# Scheduling and processing.
#
# gem 'sidekiq', '~> 2.9.0'
# gem 'sidekiq-failures'
# Sidekiq uses Sinatra for status page.
#
# gem 'sinatra', '>= 1.3.0', :require => nil
gem 'recursive-open-struct'
gem 'simple_form'
gem 'kaminari'
gem 'enumerize', github: 'brainspec/enumerize'
group :development, :test do
# rspec-rails must be in development group as well for `rake spec' to work
gem 'rspec-rails'
# Allows invoking binding.pry from failing specs.
gem 'pry'
gem 'pry-rails'
gem 'ffaker'
end
group :development do
gem 'letter_opener'
gem 'ruby-prof'
gem 'better_errors'
gem 'binding_of_caller'
# Capistrano and friends
gem 'capistrano'
gem 'capistrano-ext'
gem 'capistrano-detect-migrations'
gem 'capistrano-nc'
gem 'capistrano_colors'
gem 'capistrano-rbenv'
gem 'quiet_assets'
# Mailcatcher is used on staging to debug e-mail.
# is depends on sqlite3, so it doesn't work on heroku
gem 'mailcatcher', github: 'sj26/mailcatcher'
end
group :test do
gem 'simplecov', require: false
gem 'simplecov-summary'
gem 'fuubar'
gem 'factory_girl_rails'
gem 'shoulda'
gem 'pdf-reader', require: false
end