-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
41 lines (37 loc) · 922 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.5.2'
gem 'rails-i18n', '~> 4.0.0'
gem 'pg', '~> 0.18'
gem 'sass-rails', '~> 5.0.4'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'devise'
gem 'devise-i18n'
gem 'rails_12factor', group: :production
gem 'cancancan', '~> 1.9'
gem 'angularjs-rails', '>= 1.3.6', '< 1.3.36'
gem 'angular_rails_csrf'
gem 'activeadmin', github: 'activeadmin'
gem 'omniauth-facebook'
gem 'kaminari'
gem 'angular-ui-bootstrap-rails'
gem 'figaro'
gem 'showdown-rails'
gem 'puma'
gem 'exception_notification'
gem 'nokogiri', '1.6.7.2'
group :development do
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
gem 'spring'
gem 'capistrano'
gem 'capistrano-rails', '~> 1.1.3'
gem 'capistrano-bundler'
gem 'capistrano3-puma'
end