We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9891049 commit ed2be4eCopy full SHA for ed2be4e
2 files changed
.github/workflows/test.yml
@@ -10,6 +10,7 @@ jobs:
10
ruby-version: ['3.1', '3.2', '3.3', '3.4']
11
rails-version: ['~> 7.2', '~> 8.0', '~> 8.1']
12
argon2-version: ['2.2', '2.3']
13
+ devise-version: ['4.9', 'main']
14
orm:
15
- adapter: active_record
16
- adapter: mongoid
Gemfile
@@ -7,7 +7,12 @@ gem 'simplecov'
7
gem 'activerecord'
8
gem 'rails', ENV['RAILS_VERSION'] || '~> 8.0'
9
gem 'argon2', ENV['ARGON2_VERSION'] || '~> 2.3'
-gem 'devise', ENV['DEVISE_VERSION'] || '~> 4.9'
+
+if ENV['DEVISE_VERSION'] == 'main'
+ gem 'devise', github: 'heartcombo/devise'
+else
+ gem 'devise', ENV['DEVISE_VERSION'] || '~> 4.9'
+end
17
if ENV['ORM'] == 'mongoid'
18
gem 'mongoid', ENV['MONGOID_VERSION'] || '~> 7.5'
0 commit comments