-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
49 lines (38 loc) · 928 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
source 'https://rubygems.org'
ruby '2.3.5'
gem 'devise'
gem 'figaro'
gem 'jbuilder', '~> 2.0'
# Use postgresql as the database for Active Record
gem 'pg'
gem 'puma'
gem 'rails', '5.1.4'
gem 'redis'
# Client for accessing Google APIs
gem 'google-api-client', '0.8.2', require: 'google/api_client'
# Rugy gems provided by Wagon template
gem 'autoprefixer-rails'
gem 'bootstrap-sass'
gem 'font-awesome-sass'
gem 'jquery-rails'
# Use SCSS for stylesheets
gem 'sass-rails'
# Strategy to authenticate with Google via OAuth2 in OmniAuth.
gem 'omniauth-google-oauth2'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker', '~> 3.0'
gem "geocoder"
gem 'nokogiri'
group :development, :test do
gem 'web-console', '>= 3.3.0'
gem 'pry-byebug'
# gem 'pry-rails'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capybara'
gem 'poltergeist'
gem 'launchy'
gem 'minitest-reporters'
end