-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
55 lines (42 loc) · 877 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
source 'http://rubygems.org'
gem 'rails', '4.2.5'
gem 'sqlite3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
# SASS
gem 'bootstrap-sass', '~> 3.3.6'
gem 'sass-rails', '>= 3.2'
# Icons
gem 'font-awesome-sass'
# Authentication
gem 'devise'
# Notifications
gem 'toastr-rails'
# Emails
gem 'sendgrid-rails'
# Storing secrets
gem 'figaro'
# Login with facebook feature
gem 'omniauth'
gem 'omniauth-facebook'
# Attaching files & photos
gem 'paperclip'
# Google Maps feature
gem 'geocoder'
# Web Sockets, real time messages
gem 'private_pub'
gem 'thin'
# Complex search queries w/ constraints
gem 'ransack'
# Debugging etc.
group :development, :test do
gem 'pry-rails'
gem 'pry-byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end