-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
60 lines (46 loc) · 1.02 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
57
58
59
60
source "https://rubygems.org"
gem "rails", "3.2.13"
# 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 "jquery-rails"
gem "jquery-ui-rails"
gem "jquery-modal-rails"
gem "bootstrap-datepicker-rails"
end
group :development do
gem "rails_layout"
end
gem "devise"
#autocomplete
gem "rails3-jquery-autocomplete"
#notification
gem "gritter", "1.0.3"
gem "awesome_nested_set"
#To use tagging
gem "acts-as-taggable-on"
# To use Geolocations
gem "geocoder"
# To use ActiveModel has_secure_password
gem "bcrypt-ruby", "~> 3.0.0"
gem "pg"
# Search Engine
gem "sunspot_rails"
gem "magnific-popup-rails"
gem "slim-rails"
gem "simple_form"
gem "country_select"
gem "journey"
gem "arel"
gem "kaminari"
gem "truncate_html"
#upload files
gem "carrierwave"
gem "rmagick"
gem "mini_magick"
#chat
gem 'private_pub'
gem 'thin'