-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (37 loc) · 765 Bytes
/
Gemfile
File metadata and controls
52 lines (37 loc) · 765 Bytes
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
source 'https://rubygems.org'
ruby "1.9.3"
gem 'rails', '3.2.13'
gem 'thin'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', :platforms => :ruby
gem 'less-rails'
end
#Database
gem 'pg'
#jQuery
gem 'jquery-rails'
# Newrelic
gem 'newrelic_rpm'
# Authentication
gem 'devise'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# uuid for users
gem 'uuidtools'
# Twitter Bootstrap
gem 'twitter-bootstrap-rails', '2.2.6'
gem 'bootstrap_helper'
# File/Photo Uploading
gem 'jquery-fileupload-rails'
gem 'paperclip'
# Categories/Sub-Categories
gem 'ancestry'
# Dropdowns
gem 'select2-rails'
# jQuery UI
gem 'jquery-ui-rails'
# Pagination
gem 'kaminari'