You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/generators/rodauth/install_generator.rb
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,14 @@ def add_gems
43
43
gem"sequel-activerecord_connection","~> 2.0",comment: "Enables Sequel to use Active Record's database connection"
44
44
gem"after_commit_everywhere","~> 1.1",comment: "Required for Sequel's transaction hooks to work in all cases (on Active Record < 7.2)"ifActiveRecord.version < Gem::Version.new("7.2")
45
45
end
46
-
unlessargon2?
46
+
ifargon2?
47
+
gem"argon2","~> 2.3",comment: "Used by Rodauth for password hashing"
48
+
else
47
49
gem"bcrypt","~> 3.1",comment: "Used by Rodauth for password hashing"
48
50
end
51
+
ifjwt?
52
+
gem"jwt","~> 2.9",comment: "Used by Rodauth for JWT support"
53
+
end
49
54
gem"tilt","~> 2.4",comment: "Used by Rodauth for rendering built-in view and email templates"
0 commit comments