-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (56 loc) · 1.51 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
61
62
63
64
65
66
67
68
source 'https://rubygems.org'
ruby '2.3.5'
# Money and Stripe
gem 'money-rails'
gem 'stripe'
# Bootstrap and icons
gem "bootstrap", ">= 4.1.2"
# gem 'bootstrap', '~> 4.0.0.beta2.1'
# gem 'sprockets-rails', '~> 3.0', '>= 3.0.4'
gem 'ionicons-rails'
# Github Vulnerability => CVE-2018-3741 (https://nvd.nist.gov/vuln/detail/CVE-2018-3741)
gem "rails-html-sanitizer", ">= 1.0.4"
# Github vulnerability => CVE-2018-16468 (https://nvd.nist.gov/vuln/detail/CVE-2018-16468)
gem "loofah", ">= 2.2.3"
# Two more vulnerabilities
gem "ffi", ">= 1.9.24"
gem "sprockets", ">= 3.7.2"
# Geocoding with Gmaps
gem "geocoder"
gem "coffee-rails"
gem "gmaps4rails"
source 'https://rails-assets.org' do
gem "rails-assets-underscore"
end
gem 'faker', :git => 'https://github.com/stympy/faker.git', :branch => 'master'
# TODO: Drag n drop - Image uploading (https://www.youtube.com/watch?v=ic4MeDEfT08)
# gem 'paperclip'
# gem 'dropzonejs-rails'
# Photo uploading with Cloudinary
gem 'cloudinary'
gem 'attachinary', github: 'assembler/attachinary'
gem 'jquery-fileupload-rails'
# gem 'coffee-rails'
gem 'figaro'
gem 'devise'
gem 'jbuilder', '~> 2.0'
gem 'pg'
gem 'puma'
gem 'rails', '5.1.4'
gem 'redis'
gem 'autoprefixer-rails'
gem 'font-awesome-sass'
gem 'jquery-rails'
gem 'sass-rails'
gem 'simple_form'
gem 'uglifier'
group :development, :test do
gem 'pry-byebug'
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end