-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (38 loc) · 855 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
source 'https://rubygems.org'
ruby '3.1.2'
gem 'dotenv-rails', groups: [:development, :test]
gem 'bootsnap', require: false
gem 'devise'
gem 'figaro'
gem 'omniauth-facebook'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'jbuilder', '~> 2.0'
gem 'pg', '~> 1.1'
gem 'puma'
gem 'rails', '~> 6.0'
gem 'redis'
gem 'sass'
gem 'koala' #Interact with the FB graph api
gem 'autoprefixer-rails'
gem 'bootstrap-sass', '~> 3.4'
gem 'font-awesome-sass', '~> 5.0.9'
gem 'sass-rails'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
gem "pundit"
gem 'faker'
gem 'cloudinary'
gem 'carrierwave', '~> 1.3'
gem 'jquery-rails'
gem 'jquery-slick-rails'
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'
end