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: ff5e475306adc67c896180c9fa815a3d1084ee5e4b6a0e0b1e0b2bbfa2557ec4
4
- data.tar.gz: ab12836d72a9e9ddb7e9a917035f90001f5fe542a723ed7e0a356bbe331af848
3
+ metadata.gz: 2d3b010a033c582213a7dd1fafee8905bd27f8332e2b99cf51ddb34d68785c7a
4
+ data.tar.gz: 3278250b00705e03f1e943a5870391fff22de8600ad06b6dfe088edd12c97445
5
5
  SHA512:
6
- metadata.gz: 6c9315eb3c74beb4dbe0db3c4b447317d2f7d811bd2585395c30322d5bed14801eaf345c975db39a75a375f9cf5499c2554944d901a00c8efeea3834d9b9ce6b
7
- data.tar.gz: b3c709c6d818b32926ea6feb32300522b40f25375b10b515519f108aa3706d7906f93ff6d6f2e79c48d753b7d8414aa05cc2e9775ed7bfb527bc65b9c9ddf4ad
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)
@@ -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.3'
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_auth_devise_devise_token_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0.3
4
+ version: 2.1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michał Siwek (skycocker)