-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (44 loc) · 1.19 KB
/
Gemfile
File metadata and controls
50 lines (44 loc) · 1.19 KB
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
source 'https://rubygems.org'
gem 'rails', '4.2.7'
gem 'bcrypt', '3.1.7'
gem 'faker', '1.4.2'
gem 'carrierwave', '0.10.0'
gem 'mini_magick', '3.8.0'
gem 'carrierwave-aws', '1.0.1'
gem 'will_paginate','3.0.7'
gem 'bootstrap-will_paginate', '0.0.10'
gem 'bootstrap-sass','3.2.0.0'
gem 'sass-rails', '5.0.2'
gem 'uglifier', '2.5.3'
gem 'coffee-rails', '4.1.0'
gem 'jquery-rails', '4.0.3'
gem 'turbolinks', '2.3.0'
gem 'jbuilder', '2.2.3'
gem 'sdoc', '0.4.0', group: :doc
gem 'jwt'
group :development, :test do
gem 'sqlite3', '1.3.9'
gem 'byebug', '3.4.0'
gem 'web-console', '2.0.0.beta3'
gem 'spring', '1.1.3'
end
group :development do
gem 'net-ssh', '4.0.0.beta3'
gem 'bcrypt_pbkdf'
gem 'rbnacl-libsodium', '1.0.10'
gem 'capistrano', '3.6.1'
gem 'capistrano-rails'
gem 'capistrano3-unicorn'
gem 'terminal-notifier', require: false
gem 'terminal-notifier-guard', require: false
end
group :test do
gem 'minitest-reporters', '1.0.5'
gem 'mini_backtrace', '0.1.3'
gem 'guard-minitest', '2.3.1'
end
group :production do
gem 'mysql2', '~> 0.4.4'
gem 'rails_12factor', '0.0.2'
gem 'unicorn'
end