-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
40 lines (33 loc) · 895 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.14'
gem 'pg'
gem 'rails_12factor', group: :production
gem 'haml'
gem 'bcrypt-ruby', '3.0.0'
gem 'carrierwave'
gem "fog", "~> 1.3.1" #required for carrierwave s3
gem 'pdfkit'
gem 'underscore-rails'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer'
gem 'less-rails-bootstrap'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
group :development, :test do
gem 'pry-rails'
gem 'pry-debugger'
gem 'pry-stack_explorer'
gem 'annotate'
gem 'quiet_assets'
gem 'better_errors'
gem 'dotenv-rails'
# BetterErrors.editor = :sublime if defined? BetterErrors (initializer)
# http://localhost:3000/__better_errors (reports last exception for debugging)
gem 'binding_of_caller'
gem 'meta_request'
# Add RailsPanel extension in the Chrome Web Store
end