-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (43 loc) · 1.03 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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Frontend
gem 'slim-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'simple_form'
gem 'quiet_assets'
# User management
gem 'sorcery'
# File management
gem 'carrierwave'
gem 'mini_magick'
gem 'fog'
# Utils
gem 'ranked-model'
group :assets do
# CSS and JS
gem 'sass'
gem 'sass-rails', '~> 3.2.3'
gem 'less-rails', git: 'git://github.com/metaskills/less-rails.git'
gem 'coffee-rails', '~> 3.2.1'
# javascript runtime
gem "therubyracer"
# Assets precompiling
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
# backoffice style framework
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
end
# Development
group :development do
gem 'thin'
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'rb-fsevent', require: false
end