-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (38 loc) · 881 Bytes
/
Gemfile
File metadata and controls
41 lines (38 loc) · 881 Bytes
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
source 'http://rubygems.org'
ruby '3.2.9'
gem 'autoprefixer-rails'
gem 'bootsnap', require: false
gem 'cocoon'
gem 'cloudinary'
# gem 'devise'
# gem 'devise', github: 'heartcombo/devise', branch: 'master' # This temporarily fixes an omniauth issue
gem 'devise'
gem 'font-awesome-sass', '~> 5.12.0'
gem 'jbuilder', '~> 2.0'
gem 'json'
gem 'mysql2', '~> 0.5.3'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'pg', '~> 1.2.3'
gem 'puma', '5.6.4'
gem 'pundit'
gem 'rails', '~> 7.0'
gem 'redis'
gem 'sassc-rails'
gem 'scss_lint'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
group :development do
gem 'web-console', '~> 4.0.2'
end
group :development, :test do
gem 'actionview'
gem 'dotenv-rails'
gem 'listen', '~> 3.2.1'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rubocop'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end