-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
60 lines (42 loc) · 1.03 KB
/
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
56
57
58
59
60
source 'http://rubygems.org'
gem 'bundle'
gem 'rails', '~> 7.1'
gem 'mysql2', '~> 0.5.3'
# Use the Puma web server
gem 'puma', '~> 6.4'
# MySQL Session store
gem "activerecord-session_store", "~> 2.1.0"
# Asset pipeline
gem 'sass-rails', '~> 6.0.0'
gem "coffee-script", "~> 2.4.1"
gem "coffee-rails", "~> 5.0.0"
gem "uglifier", "~> 4.2.0"
gem "webpacker", ">= 5.4.4"
gem 'tzinfo-data'
# Authentication
gem 'bcrypt', '~> 3.1.5'
gem 'devise', '~> 4.9.4'
gem "devise-encryptable", "~> 0.2.0"
# Maps
gem "leaflet-rails", "~> 1.9.3"
# Spam prevention
gem "recaptcha", "~> 5.17.0", :require => "recaptcha/rails"
# Jobs
gem 'whenever', '~> 1.0.0'
# Bootstrap
gem 'bootstrap-sass', '~> 3.4.1'
gem 'jquery-rails', '~> 4.6.0'
# XML Parsing
gem 'nokogiri', '~> 1.16.5'
gem 'nori', '~> 2.7.1'
gem "config", "~> 5.5.1"
gem 'icalendar', '~> 2.10.2'
gem "geocoder", "~> 1.8.3"
# JSON Builder
gem 'jbuilder', '~> 2.12.0'
# Logging (email)
gem "exception_notification", "~> 4.5"
# Authorization
gem "pundit", "~> 2.3.2"
# Geo
gem 'haversine', '~> 0.3.2'