-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathGemfile
47 lines (35 loc) · 872 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
source 'https://rubygems.org'
gem 'rails', '4.2.4'
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-sass', '~> 3.3.5'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'devise'
# For notification
gem 'toastr-rails'
# For authentication
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# This gem requires ImageMagick to be installed
# Run sudo apt-get install imagemagick or visit https://github.com/thoughtbot/paperclip#image-processor
gem 'paperclip'
gem 'geocoder'
gem 'jquery-ui-rails'
group :development, :test do
gem 'sqlite3'
gem 'byebug'
gem 'dotenv-rails'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
end
group :production do
gem 'pg'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]