solidus_auth_devise_devise_token_auth 2.1.0.2 → 2.1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff5e475306adc67c896180c9fa815a3d1084ee5e4b6a0e0b1e0b2bbfa2557ec4
|
|
4
|
+
data.tar.gz: ab12836d72a9e9ddb7e9a917035f90001f5fe542a723ed7e0a356bbe331af848
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c9315eb3c74beb4dbe0db3c4b447317d2f7d811bd2585395c30322d5bed14801eaf345c975db39a75a375f9cf5499c2554944d901a00c8efeea3834d9b9ce6b
|
|
7
|
+
data.tar.gz: b3c709c6d818b32926ea6feb32300522b40f25375b10b515519f108aa3706d7906f93ff6d6f2e79c48d753b7d8414aa05cc2e9775ed7bfb527bc65b9c9ddf4ad
|
|
@@ -57,7 +57,7 @@ class RenameColumnsForDevise < SolidusSupport::Migration[4.2]
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
if column_exists?(:spree_users, :current_login_ip)
|
|
60
|
-
if column_exists?(:current_sign_in_ip)
|
|
60
|
+
if column_exists?(:spree_users, :current_sign_in_ip)
|
|
61
61
|
remove_column :spree_users, :current_login_ip
|
|
62
62
|
else
|
|
63
63
|
rename_column :spree_users, :current_login_ip, :current_sign_in_ip
|
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.3'
|
|
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
|
|