-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (38 loc) · 814 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
source 'https://rubygems.org'
gem 'rails', '4.1.0'
gem 'unicode_utils'
gem 'sqlite3'
# html
gem 'haml'
gem 'haml-rails'
gem 'haml-contrib'
# css
gem 'less-rails'
gem 'sass-rails', '~> 4.0.3'
gem 'twitter-bootstrap-rails'
# js
gem 'therubyracer', platforms: :ruby
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'erb2haml'
end
gem 'bcrypt', '~> 3.1.7'
#gem 'activeadmin', github: 'gregbell/active_admin'
#gem 'formtastic' , github: 'justinfrench/formtastic'
# gem 'simple_form'
# gem 'RedCloth'
# gem 'rmagick'
# gem 'carrierwave'
# capistrano
gem 'capistrano', '~> 2.15'
gem 'thin'