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-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,18 +40,18 @@ def create_rodauth_app
40
40
41
41
defadd_gems
42
42
ifactiverecord? && !sequel?
43
-
gem"sequel-activerecord_connection","~> 2.0",comment: "Enables Sequel to use Active Record's database connection"
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")
43
+
gem"sequel-activerecord_connection","~> 2.0",require: false,comment: "Enables Sequel to use Active Record's database connection"
44
+
gem"after_commit_everywhere","~> 1.1",require: false,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
46
ifargon2?
47
-
gem"argon2","~> 2.3",comment: "Used by Rodauth for password hashing"
47
+
gem"argon2","~> 2.3",require: false,comment: "Used by Rodauth for password hashing"
48
48
else
49
-
gem"bcrypt","~> 3.1",comment: "Used by Rodauth for password hashing"
49
+
gem"bcrypt","~> 3.1",require: false,comment: "Used by Rodauth for password hashing"
50
50
end
51
51
ifjwt?
52
-
gem"jwt","~> 2.9",comment: "Used by Rodauth for JWT support"
52
+
gem"jwt","~> 2.9",require: false,comment: "Used by Rodauth for JWT support"
53
53
end
54
-
gem"tilt","~> 2.4",comment: "Used by Rodauth for rendering built-in view and email templates"
54
+
gem"tilt","~> 2.4",require: false,comment: "Used by Rodauth for rendering built-in view and email templates"
0 commit comments