solidus_auth_devise_devise_token_auth 2.1.0.3 → 2.1.0.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d3b010a033c582213a7dd1fafee8905bd27f8332e2b99cf51ddb34d68785c7a
|
4
|
+
data.tar.gz: 3278250b00705e03f1e943a5870391fff22de8600ad06b6dfe088edd12c97445
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70f72940fca85acf8213c323093b3413318528a5e5c85f3b5d77985b1a045808a3c5b620c3dfb15faacdc93fce223bd8d465f41a488efd4fa53cc0fbceb80d83
|
7
|
+
data.tar.gz: 91ba1a0858e51402837be74cf1eb8d32776022d8b9b252ea2986cf433b32d58b3265ff51b33780f2809afadfa84a476ba29a175eff82667e9d9ed7419e8b55d3
|
@@ -6,6 +6,8 @@ class RenameColumnsForDevise < SolidusSupport::Migration[4.2]
|
|
6
6
|
|
7
7
|
if column_exists?(:spree_users, :salt)
|
8
8
|
rename_column :spree_users, :salt, :password_salt
|
9
|
+
elsif !column_exists?(:spree_users, :password_salt)
|
10
|
+
add_column :spree_users, :password_salt, :string
|
9
11
|
end
|
10
12
|
|
11
13
|
if column_exists?(:spree_users, :remember_token_expires_at)
|
data/solidus_auth_devise.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.name = 'solidus_auth_devise_devise_token_auth'
|
6
|
-
s.version = '2.1.0.
|
6
|
+
s.version = '2.1.0.4'
|
7
7
|
s.summary = 'Provides authentication and authorization services for use with Solidus by using Devise and CanCan (devise_token_auth revised version)'
|
8
8
|
s.description = s.summary
|
9
9
|
|