-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
44 lines (32 loc) · 1.04 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.4'
gem 'sass-rails', '~> 4.0.3'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'font-awesome-rails'
gem 'jquery-rails', '~> 3.1.1'
gem 'momentjs-rails', '~> 2.8.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks', '~> 2.2.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0.3'
gem 'haml', '~> 4.0.5'
gem 'cancancan', '~> 1.8'
gem 'devise', '~> 3.2.2'
# for pagination
gem 'kaminari', '~> 0.16.1'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
group :development, :test do
gem 'faker', '~> 1.4.3'
gem 'sqlite3', '~> 1.3.9'
end