-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (49 loc) · 1009 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
60
61
62
63
64
source 'https://rubygems.org'
# Rails
gem 'rails', '4.0.3'
# Database
gem 'sqlite3'
# Autorization and authentication
gem "devise"
gem "pundit"
gem 'omniauth-facebook'
gem "certified"
# Facebook
gem "koala"
# Assets
gem "sass-rails", "~> 4.0.0"
gem 'uglifier', '>= 1.3.0'
gem "coffee-rails", "~> 4.0.0"
gem "autoprefixer-rails", "~> 1.1.20140302"
# Uploads
gem "carrierwave"
gem "mini_magick"
# JavaScripts
gem 'jquery-rails'
# Views
gem "haml"
gem "bootstrap-sass", '~> 3.1.1'
gem "simple_form"
gem "draper", '~> 1.3'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', "~> 2.2.1"
# Configuration
gem "settingslogic"
# Routing
gem "route_translator"
# I18n
gem "polish"
# Pagination
gem "kaminari"
# Debugging
group :development do
gem "letter_opener"
gem "better_errors"
gem "binding_of_caller"
gem "quiet_assets"
end
# Views for development
group :development do
gem "haml-rails"
gem "erb2haml"
end