-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
59 lines (44 loc) · 1.26 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0.beta3'
gem 'sqlite3'
gem 'puma'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', require: false
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.x'
gem 'jbuilder', '~> 2.0'
gem 'bootstrap-sass'
gem 'bootswatch-rails'
gem 'bh'
gem 'font-awesome-rails'
gem 'gravatarify'
gem 'will_paginate-bootstrap'
gem 'will_paginate', '~> 3.1.0'
gem 'faker', '~> 1.6.1'
gem 'carrierwave', '~> 0.11.0'
gem 'mini_magick', '~> 4.4'
gem 'acts-as-taggable-on', git: 'https://github.com/Eric-Guo/acts-as-taggable-on'
gem 'devise', '~> 4.0.0.rc2'
gem 'devise-bootstrap-views'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.10'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'web-console', '~> 3.1.1', group: :development
group :test do
gem 'minitest'
gem 'guard'
gem 'guard-minitest', '~> 2.4.4'
end
group :development, :test do
gem 'byebug'
gem 'spring', platforms: :ruby
end
group :production do
gem 'pg', '~> 0.18.4'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]