-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (46 loc) · 894 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
source 'https://rubygems.org'
gem 'rails', '3.2.6'
gem 'pg'
#Views
gem 'haml'
gem 'haml-rails', group: :development
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer'
gem 'twitter-bootstrap-rails'
gem 'compass'
gem 'compass-rails'
end
gem 'jquery-rails'
#authentication
gem 'devise'
#authorization
gem 'cancan'
#Testing
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
end
#deployment
gem 'heroku'
gem 'coffee-rails', '~> 3.2.1'
#forms
gem 'simple_form'
gem 'country_select'
#image uploading
gem 'carrierwave'
gem 'rmagick'
gem 'fog'
#full-text search
gem 'pg_search'
#descriptive ids
gem 'friendly_id'
#pagination
gem 'will_paginate'