forked from rnd00/kinzame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (39 loc) · 833 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
source 'https://rubygems.org'
ruby '2.6.5'
gem 'bootsnap', require: false
gem 'jbuilder', '~> 2.0'
gem 'pg', '~> 0.21'
gem 'puma'
gem 'rails', '5.2.4.1'
gem 'redis'
gem 'autoprefixer-rails'
gem 'font-awesome-sass', '~> 5.6.1'
gem 'sassc-rails'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
# Added gems mannually
# Authentification
gem 'devise'
# Faker
gem "faker"
# Authorization
gem 'pundit'
# Cloudinary - Image hosting
gem 'cloudinary', '~> 1.12.0'
# Protecting data in env file
# Avatar upload for user
gem 'carrierwave', '~> 2.0'
# handling search requests
gem 'pg_search', '~> 2.3.0'
group :development do
gem 'web-console', '>= 3.3.0'
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'
gem 'dotenv-rails'
end