-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGemfile
57 lines (38 loc) · 1.06 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
source 'https://rubygems.org'
ruby "3.3.4"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.0.0'
# databases
gem 'sqlite3', '~> 2.1'
# Use puma as the app server
gem 'puma', '~> 5.6'
# Markdown!
gem 'redcarpet', '~> 3.5'
# Authentication w/ Google OAuth2
gem 'devise', '~> 4.9'
gem 'omniauth-google-oauth2'
# added 2021-03 for https://github.com/omniauth/omniauth/wiki/Resolving-CVE-2015-9284
gem 'omniauth-rails_csrf_protection'
# Validating user alternate emails
gem 'validates_email_format_of'
# Tracking states of print jobs
gem 'aasm'
# Image upload handling
gem "kt-paperclip", "~> 7.1", ">= 7.1.1"
gem 'aws-sdk-s3'
group :development do
gem 'dotenv'
end
# User ID hashing
gem 'hashids', '1.0.6'
gem "nanoid", "~> 2.0"
# Nokogiri CVE 2022-03-01
#gem 'nokogiri', '~> 1.14.3'
gem "importmap-rails", "~> 2.0"
gem "sprockets", "~> 4.2.1"
gem "sprockets-rails", "~> 3.5.2"
gem "sassc-rails", "~> 2.1"
gem "activestorage", "~> 8.0"
gem "image_processing", "~> 1.13"
gem "requestjs-rails", "~> 0.0.12"
gem "ruby-oembed", "~> 0.18.1"