-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
60 lines (38 loc) · 813 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
gem 'rails', '4.2.3'
gem 'carrierwave'
gem 'mini_magick'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'fog'
gem 'fog-aws'
gem 'friendly_id', '~> 5.1.0'
gem 'cancancan', '~> 1.10'
gem 'pg_search'
gem 'kaminari'
gem 'dotenv-rails'
gem 'ckeditor'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'pry-rails'
gem 'better_errors'
gem 'quiet_assets'
gem 'faker'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-ssh-doctor'
end