-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (32 loc) · 889 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
41
42
43
ruby '2.3.8'
source 'https://rubygems.org'
gem 'rails', '3.2.22.5'
gem 'test-unit', '~> 3.0'
gem 'pg', '~> 0.21.0'
gem 'dotenv-rails', '~> 2.7.4'
group :assets do
gem 'tilt', '1.3.3'
gem 'sprockets', '2.2.2'
gem 'hike', '1.2.1'
gem 'sass-rails', '3.2.6'
gem 'sass', '3.2.5'
gem 'bootstrap-sass', '2.2.2.0'
gem 'uglifier', '>= 1.0.3'
gem 'execjs', '1.4.0'
end
gem 'jquery-rails', '2.1.4'
gem 'haml', '3.1.7'
gem 'sorcery', '0.7.13'
gem 'bcrypt-ruby', '3.0.0'
gem 'httpauth', '0.2.0'
group :development do
gem 'capistrano', '~> 3.10', require: false
gem 'capistrano-rbenv', '~> 2.1.4', require: false
gem 'capistrano-rails', '~> 1.3', require: false
gem 'capistrano-bundler', '~> 1.6.0', require: false
gem 'capistrano-passenger', '~> 0.2.0', require: false
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener_web'
end