-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (38 loc) · 810 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
source 'https://rubygems.org'
ruby '2.4.3'
gem 'devise'
gem 'figaro'
gem 'jbuilder', '~> 2.0'
gem 'pg', '~> 0.21'
gem 'puma'
gem 'rails', '5.1.5'
gem 'redis'
gem 'autoprefixer-rails'
gem 'bootstrap-sass', '~> 3.3'
gem 'font-awesome-sass', '~> 4.7'
gem 'sass-rails'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
# Faker
gem 'faker', :git => 'https://github.com/stympy/faker.git', :branch => 'master'
# Image upload
gem 'cloudinary'
gem 'carrierwave', '~> 1.2'
gem "pundit"
# Geocoding
gem "geocoder"
group :development do
gem 'web-console', '>= 3.3.0'
gem 'capybara'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'launchy'
end
group :development, :test do
gem 'pry-byebug'
gem 'pry-rails'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end