-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gemfile
43 lines (38 loc) · 926 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
source 'https://rubygems.org'
ruby "2.4.1"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.1'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jbuilder', '~> 2.5'
gem 'google-api-client', '~> 0.11'
gem 'sucker_punch'
gem 'activejob-traffic_control'
gem 'dotenv-rails'
gem 'rack-cors', :require => 'rack/cors'
gem 'geocoder'
gem 'devise'
gem 'vacuum'
gem 'connection_pool'
gem "httparty", "~> 0.15.6"
gem 'redis', '~> 3.2'
gem 'simple_form'
gem 'redcarpet'
group :development, :test do
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'pry'
gem 'vcr'
gem "webmock", "~> 3.0"
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end