solidus_auth_devise 1.6.2 → 1.6.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 +4 -4
- data/.travis.yml +4 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +6 -2
- data/config/locales/de.yml +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/fr.yml +1 -0
- data/config/locales/nl.yml +1 -0
- data/config/locales/pt-BR.yml +1 -0
- data/config/locales/tr.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/db/migrate/20101026184949_create_users.rb +1 -1
- data/db/migrate/20101026184950_rename_columns_for_devise.rb +1 -1
- data/db/migrate/20101214150824_convert_user_remember_field.rb +1 -1
- data/db/migrate/20120203010234_add_reset_password_sent_at_to_spree_users.rb +1 -1
- data/db/migrate/20120605211305_make_users_email_index_unique.rb +1 -1
- data/db/migrate/20140904000425_add_deleted_at_to_users.rb +1 -1
- data/db/migrate/20141002154641_add_confirmable_to_users.rb +1 -1
- data/lib/controllers/frontend/spree/checkout_controller_decorator.rb +0 -1
- data/lib/solidus_auth_devise.rb +1 -2
- data/solidus_auth_devise.gemspec +3 -5
- data/spec/controllers/spree/checkout_controller_spec.rb +12 -12
- data/spec/controllers/spree/products_controller_spec.rb +2 -2
- data/spec/controllers/spree/user_passwords_controller_spec.rb +2 -2
- data/spec/controllers/spree/user_registrations_controller_spec.rb +9 -6
- data/spec/controllers/spree/user_sessions_controller_spec.rb +9 -6
- data/spec/controllers/spree/users_controller_spec.rb +4 -4
- metadata +19 -33
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1a8bbe532616691acca8ba8cd61bf30a08cb718
|
|
4
|
+
data.tar.gz: 957b80f590477451fbf617fde9c1b84f26164e9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e4ccfc768a4641c9235cddc8403d917dc509cca8f69bb332b0d43463d9269c353ab7b9111bef62cb74343bee697ce6fc689df273bdb2dbd53446885285a80f0
|
|
7
|
+
data.tar.gz: edb14fb8c87e92595bdc5340f38f561db9e91f78fa8804b4668e4d20168a82f74ae739963ae913ce8b6bf7ec6d6e7853365b225ffe8573b5147504b4ed100060
|
data/.travis.yml
CHANGED
|
@@ -10,6 +10,8 @@ env:
|
|
|
10
10
|
- SOLIDUS_BRANCH=v1.3 DB=postgres
|
|
11
11
|
- SOLIDUS_BRANCH=v1.4 DB=postgres
|
|
12
12
|
- SOLIDUS_BRANCH=v2.0 DB=postgres
|
|
13
|
+
- SOLIDUS_BRANCH=v2.1 DB=postgres
|
|
14
|
+
- SOLIDUS_BRANCH=v2.2 DB=postgres
|
|
13
15
|
- SOLIDUS_BRANCH=master DB=postgres
|
|
14
16
|
- SOLIDUS_BRANCH=v1.0 DB=mysql
|
|
15
17
|
- SOLIDUS_BRANCH=v1.1 DB=mysql
|
|
@@ -17,4 +19,6 @@ env:
|
|
|
17
19
|
- SOLIDUS_BRANCH=v1.3 DB=mysql
|
|
18
20
|
- SOLIDUS_BRANCH=v1.4 DB=mysql
|
|
19
21
|
- SOLIDUS_BRANCH=v2.0 DB=mysql
|
|
22
|
+
- SOLIDUS_BRANCH=v2.1 DB=mysql
|
|
23
|
+
- SOLIDUS_BRANCH=v2.2 DB=mysql
|
|
20
24
|
- SOLIDUS_BRANCH=master DB=mysql
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## Master (unreleased)
|
|
2
2
|
|
|
3
|
+
## Solidus Auth Devise v1.6.3 (2017-05-09)
|
|
4
|
+
|
|
5
|
+
* Add missing translations for already_authenticated
|
|
6
|
+
* Do not require core email validator
|
|
7
|
+
* Remove dependency on `json`, `multi_json`
|
|
8
|
+
* Remove unnecessary sass/coffeescript requires
|
|
9
|
+
* Fix warnings on Rails 5, support Rails 5.1
|
|
10
|
+
* Change deface dependency from `~> 1.0.0` to `~> 1.0`
|
|
11
|
+
|
|
3
12
|
## Solidus Auth Devise v1.6.2 (2016-11-18)
|
|
4
13
|
|
|
5
14
|
* Fix an issue where invalid addresses could be persisted after starting a
|
data/Gemfile
CHANGED
|
@@ -3,8 +3,12 @@ source "https://rubygems.org"
|
|
|
3
3
|
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
|
|
4
4
|
gem "solidus", github: "solidusio/solidus", branch: branch
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
group :test do
|
|
7
|
+
if branch == 'master' || branch >= "v2.0"
|
|
8
|
+
gem "rails-controller-testing"
|
|
9
|
+
else
|
|
10
|
+
gem "rails_test_params_backport"
|
|
11
|
+
end
|
|
8
12
|
end
|
|
9
13
|
|
|
10
14
|
gem 'pg'
|
data/config/locales/de.yml
CHANGED
|
@@ -7,6 +7,7 @@ de:
|
|
|
7
7
|
confirmed: Ihr Konto wurde erfolgreich aktiviert.
|
|
8
8
|
send_instructions: 'In ein paar Minuten erhalten Sie eine E-Mail mit Anweisungen, um Ihr Konto zu aktivieren.'
|
|
9
9
|
failure:
|
|
10
|
+
already_authenticated: Sie sind bereits angemeldet.
|
|
10
11
|
inactive: Ihr Konto wurde noch nicht aktiviert.
|
|
11
12
|
invalid: Ungültige E-Mail-Adresse oder Passwort.
|
|
12
13
|
invalid_token: Ungültiger Authentifizierungsschlüssel.
|
data/config/locales/en.yml
CHANGED
|
@@ -7,6 +7,7 @@ en:
|
|
|
7
7
|
confirmed: Your account was successfully confirmed. You are now signed in.
|
|
8
8
|
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
|
9
9
|
failure:
|
|
10
|
+
already_authenticated: You are already signed in.
|
|
10
11
|
inactive: Your account was not activated yet.
|
|
11
12
|
invalid: Invalid email or password.
|
|
12
13
|
invalid_token: Invalid authentication token.
|
data/config/locales/es.yml
CHANGED
|
@@ -5,6 +5,7 @@ es:
|
|
|
5
5
|
confirmed: Su cuenta ha sido confirmada. Ahora está conectado.
|
|
6
6
|
send_instructions: Recibirá un email con instrucciones acerca de como confirmar su cuenta en pocos minutos.
|
|
7
7
|
failure:
|
|
8
|
+
already_authenticated: Ya has iniciado sesión.
|
|
8
9
|
inactive: Su cuenta no ha sido activada aún.
|
|
9
10
|
invalid: Dirección de correo o contraseña no válidos.
|
|
10
11
|
invalid_token: Token de autenticación no válido.
|
data/config/locales/fr.yml
CHANGED
|
@@ -5,6 +5,7 @@ fr:
|
|
|
5
5
|
confirmed: Votre compte a été confirmé. Vous êtes maintenant connecté(e).
|
|
6
6
|
send_instructions: Vous recevrez dans quelques minutes un courriel avec les instructions sur la façon de confirmer votre compte.
|
|
7
7
|
failure:
|
|
8
|
+
already_authenticated: Vous êtes déjà connecté(e).
|
|
8
9
|
inactive: Votre compte n'a pas encore été activé.
|
|
9
10
|
invalid: Courriel ou mot de passe non valide.
|
|
10
11
|
invalid_token: Jeton d'authentification non valide.
|
data/config/locales/nl.yml
CHANGED
|
@@ -5,6 +5,7 @@ nl:
|
|
|
5
5
|
confirmed: Je account is succesvol bevestigd. Je bent nu ingelogd.
|
|
6
6
|
send_instructions: Binnen enkele minuten ontvang je een e-mail om je account te bevestigen.
|
|
7
7
|
failure:
|
|
8
|
+
already_authenticated: Je bent reeds aangemeld.
|
|
8
9
|
inactive: Je account is nog niet geactiveerd.
|
|
9
10
|
invalid: E-mailadres of wachtwoord is onjuist.
|
|
10
11
|
invalid_token: Verkeerde authenticatie token.
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -7,6 +7,7 @@ pt-BR:
|
|
|
7
7
|
confirmed: Sua conta foi confirmada com sucesso. Agora você está conectado.
|
|
8
8
|
send_instructions: Você receberá um e-mail com instruções sobre como confirmar sua conta em poucos minutos.
|
|
9
9
|
failure:
|
|
10
|
+
already_authenticated: Você já está autenticado.
|
|
10
11
|
inactive: Sua conta não foi ativada ainda.
|
|
11
12
|
invalid: Email ou senha inválida.
|
|
12
13
|
invalid_token: Token de autenticação inválido.
|
data/config/locales/tr.yml
CHANGED
|
@@ -5,6 +5,7 @@ tr:
|
|
|
5
5
|
confirmed: Hesabınız başarıyla doğrulandı. Oturumunuz açıldı.
|
|
6
6
|
send_instructions: Birkaç dakika içinde hesabınızı nasıl doğrulayacağınızı anlatan bir e-posta alacaksınız.
|
|
7
7
|
failure:
|
|
8
|
+
already_authenticated: Zaten giriş yaptınız.
|
|
8
9
|
inactive: Hesabınız henüz faal değil.
|
|
9
10
|
invalid: Geçersiz e-posta ya da şifre.
|
|
10
11
|
invalid_token: Geçersiz anahtar.
|
data/config/locales/zh-CN.yml
CHANGED
data/lib/solidus_auth_devise.rb
CHANGED
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"
|
|
6
|
-
s.version = "1.6.
|
|
6
|
+
s.version = "1.6.3"
|
|
7
7
|
s.summary = "Provides authentication and authorization services for use with Solidus by using Devise and CanCan."
|
|
8
8
|
s.description = s.summary
|
|
9
9
|
|
|
@@ -21,12 +21,10 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
solidus_version = [">= 1.0.6", "< 3"]
|
|
22
22
|
|
|
23
23
|
s.add_dependency "solidus_core", solidus_version
|
|
24
|
+
s.add_dependency "solidus_support"
|
|
24
25
|
s.add_dependency "devise", '~> 4.1'
|
|
25
26
|
s.add_dependency "devise-encryptable", "0.2.0"
|
|
26
|
-
s.add_dependency 'deface', '~> 1.0
|
|
27
|
-
|
|
28
|
-
s.add_dependency "json"
|
|
29
|
-
s.add_dependency "multi_json"
|
|
27
|
+
s.add_dependency 'deface', '~> 1.0'
|
|
30
28
|
|
|
31
29
|
s.add_development_dependency "solidus_backend", solidus_version
|
|
32
30
|
s.add_development_dependency "solidus_frontend", solidus_version
|
|
@@ -17,14 +17,14 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
17
17
|
before { allow(controller).to receive(:spree_current_user) { user } }
|
|
18
18
|
|
|
19
19
|
it 'proceeds to the first checkout step' do
|
|
20
|
-
get :edit, { state: 'address' }
|
|
20
|
+
get :edit, params: { state: 'address' }
|
|
21
21
|
expect(response).to render_template :edit
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
context 'when not authenticated as guest' do
|
|
26
26
|
it 'redirects to registration step' do
|
|
27
|
-
get :edit, { state: 'address' }
|
|
27
|
+
get :edit, params: { state: 'address' }
|
|
28
28
|
expect(response).to redirect_to spree.checkout_registration_path
|
|
29
29
|
end
|
|
30
30
|
end
|
|
@@ -33,7 +33,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
33
33
|
before { order.email = 'guest@solidus.io' }
|
|
34
34
|
|
|
35
35
|
it 'proceeds to the first checkout step' do
|
|
36
|
-
get :edit, { state: 'address' }
|
|
36
|
+
get :edit, params: { state: 'address' }
|
|
37
37
|
expect(response).to render_template :edit
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -47,7 +47,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
it 'redirects to registration step' do
|
|
50
|
-
get :edit, { state: 'address' }
|
|
50
|
+
get :edit, params: { state: 'address' }
|
|
51
51
|
expect(response).to redirect_to spree.checkout_registration_path
|
|
52
52
|
end
|
|
53
53
|
end
|
|
@@ -63,14 +63,14 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
63
63
|
before { allow(controller).to receive(:spree_current_user) { user } }
|
|
64
64
|
|
|
65
65
|
it 'proceeds to the first checkout step' do
|
|
66
|
-
get :edit, { state: 'address' }
|
|
66
|
+
get :edit, params: { state: 'address' }
|
|
67
67
|
expect(response).to render_template :edit
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
71
|
context 'when authenticated as guest' do
|
|
72
72
|
it 'proceeds to the first checkout step' do
|
|
73
|
-
get :edit, { state: 'address' }
|
|
73
|
+
get :edit, params: { state: 'address' }
|
|
74
74
|
expect(response).to render_template :edit
|
|
75
75
|
end
|
|
76
76
|
end
|
|
@@ -92,7 +92,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
92
92
|
|
|
93
93
|
it 'redirects to the tokenized order view' do
|
|
94
94
|
request.cookie_jar.signed[:guest_token] = 'ABC'
|
|
95
|
-
post :update, { state: 'confirm' }
|
|
95
|
+
post :update, params: { state: 'confirm' }
|
|
96
96
|
expect(response).to redirect_to spree.token_order_path(order, 'ABC')
|
|
97
97
|
expect(flash.notice).to eq Spree.t(:order_processed_successfully)
|
|
98
98
|
end
|
|
@@ -106,7 +106,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
106
106
|
end
|
|
107
107
|
|
|
108
108
|
it 'redirects to the standard order view' do
|
|
109
|
-
post :update, { state: 'confirm' }
|
|
109
|
+
post :update, params: { state: 'confirm' }
|
|
110
110
|
expect(response).to redirect_to spree.order_path(order)
|
|
111
111
|
end
|
|
112
112
|
end
|
|
@@ -122,12 +122,12 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
122
122
|
it 'checks if the user is authorized for :edit' do
|
|
123
123
|
expect(controller).to receive(:authorize!).with(:edit, order, token)
|
|
124
124
|
request.cookie_jar.signed[:guest_token] = token
|
|
125
|
-
get :registration, {}
|
|
125
|
+
get :registration, params: {}
|
|
126
126
|
end
|
|
127
127
|
end
|
|
128
128
|
|
|
129
129
|
context '#update_registration' do
|
|
130
|
-
subject { put :update_registration, { order: { email: email } } }
|
|
130
|
+
subject { put :update_registration, params: { order: { email: email } } }
|
|
131
131
|
let(:email) { 'foo@example.com' }
|
|
132
132
|
|
|
133
133
|
it 'does not check registration' do
|
|
@@ -179,7 +179,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
179
179
|
let(:cookie_token) { 'lol_no_access' }
|
|
180
180
|
|
|
181
181
|
it 'redirects to login' do
|
|
182
|
-
put :update_registration, { order: { email: 'foo@example.com' } }
|
|
182
|
+
put :update_registration, params: { order: { email: 'foo@example.com' } }
|
|
183
183
|
expect(response).to redirect_to(login_path)
|
|
184
184
|
end
|
|
185
185
|
end
|
|
@@ -188,7 +188,7 @@ RSpec.describe Spree::CheckoutController, type: :controller do
|
|
|
188
188
|
let(:cookie_token) { nil }
|
|
189
189
|
|
|
190
190
|
it 'redirects to login' do
|
|
191
|
-
put :update_registration, { order: { email: 'foo@example.com' } }
|
|
191
|
+
put :update_registration, params: { order: { email: 'foo@example.com' } }
|
|
192
192
|
expect(response).to redirect_to(login_path)
|
|
193
193
|
end
|
|
194
194
|
end
|
|
@@ -7,7 +7,7 @@ RSpec.describe Spree::ProductsController, type: :controller do
|
|
|
7
7
|
allow(controller).to receive(:before_save_new_order)
|
|
8
8
|
allow(controller).to receive(:spree_current_user) { user }
|
|
9
9
|
allow(user).to receive(:has_spree_role?) { true }
|
|
10
|
-
get :show, id: product.to_param
|
|
10
|
+
get :show, params: { id: product.to_param }
|
|
11
11
|
expect(response.status).to eq(200)
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ RSpec.describe Spree::ProductsController, type: :controller do
|
|
|
15
15
|
allow(controller).to receive(:before_save_new_order)
|
|
16
16
|
allow(controller).to receive(:spree_current_user) { user }
|
|
17
17
|
allow(user).to receive(:has_spree_role?) { false }
|
|
18
|
-
get :show, id: product.to_param
|
|
18
|
+
get :show, params: { id: product.to_param }
|
|
19
19
|
expect(response.status).to eq(404)
|
|
20
20
|
end
|
|
21
21
|
end
|
|
@@ -24,7 +24,7 @@ RSpec.describe Spree::UserPasswordsController, type: :controller do
|
|
|
24
24
|
|
|
25
25
|
context 'when the user token has been specified' do
|
|
26
26
|
it 'does something' do
|
|
27
|
-
get :edit, reset_password_token: token
|
|
27
|
+
get :edit, params: { reset_password_token: token }
|
|
28
28
|
expect(response.code).to eq('200')
|
|
29
29
|
end
|
|
30
30
|
end
|
|
@@ -33,7 +33,7 @@ RSpec.describe Spree::UserPasswordsController, type: :controller do
|
|
|
33
33
|
context '#update' do
|
|
34
34
|
context 'when updating password with blank password' do
|
|
35
35
|
it 'shows error flash message, sets spree_user with token and re-displays password edit form' do
|
|
36
|
-
put :update, { spree_user: { password: '', password_confirmation: '', reset_password_token: token } }
|
|
36
|
+
put :update, params: { spree_user: { password: '', password_confirmation: '', reset_password_token: token } }
|
|
37
37
|
expect(assigns(:spree_user).kind_of?(Spree::User)).to eq true
|
|
38
38
|
expect(assigns(:spree_user).reset_password_token).to eq token
|
|
39
39
|
expect(flash[:error]).to eq I18n.t(:cannot_be_blank, scope: [:devise, :user_passwords, :spree_user])
|
|
@@ -12,12 +12,15 @@ RSpec.describe Spree::UserRegistrationsController, type: :controller do
|
|
|
12
12
|
let(:password_confirmation) { 'foobar123' }
|
|
13
13
|
|
|
14
14
|
subject do
|
|
15
|
-
post(:create,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
post(:create, {
|
|
16
|
+
params: {
|
|
17
|
+
spree_user: {
|
|
18
|
+
email: 'foobar@example.com',
|
|
19
|
+
password: 'foobar123',
|
|
20
|
+
password_confirmation: password_confirmation
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
})
|
|
21
24
|
end
|
|
22
25
|
|
|
23
26
|
context 'when user created successfuly' do
|
|
@@ -8,12 +8,15 @@ RSpec.describe Spree::UserSessionsController, type: :controller do
|
|
|
8
8
|
let(:password) { 'secret' }
|
|
9
9
|
|
|
10
10
|
subject do
|
|
11
|
-
post(:create,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
post(:create, {
|
|
12
|
+
params: {
|
|
13
|
+
spree_user: {
|
|
14
|
+
email: user.email,
|
|
15
|
+
password: password
|
|
16
|
+
},
|
|
17
|
+
format: format
|
|
18
|
+
}
|
|
19
|
+
})
|
|
17
20
|
end
|
|
18
21
|
|
|
19
22
|
context "when using correct login information" do
|
|
@@ -9,14 +9,14 @@ RSpec.describe Spree::UsersController, type: :controller do
|
|
|
9
9
|
context '#load_object' do
|
|
10
10
|
it 'redirects to signup path if user is not found' do
|
|
11
11
|
allow(controller).to receive(:spree_current_user) { nil }
|
|
12
|
-
put :update, { user: { email: 'foobar@example.com' } }
|
|
12
|
+
put :update, params: { user: { email: 'foobar@example.com' } }
|
|
13
13
|
expect(response).to redirect_to spree.login_path
|
|
14
14
|
end
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
context '#create' do
|
|
18
18
|
it 'creates a new user' do
|
|
19
|
-
post :create, { user: { email: 'foobar@example.com', password: 'foobar123', password_confirmation: 'foobar123' } }
|
|
19
|
+
post :create, params: { user: { email: 'foobar@example.com', password: 'foobar123', password_confirmation: 'foobar123' } }
|
|
20
20
|
expect(assigns[:user].new_record?).to be false
|
|
21
21
|
end
|
|
22
22
|
end
|
|
@@ -24,14 +24,14 @@ RSpec.describe Spree::UsersController, type: :controller do
|
|
|
24
24
|
context '#update' do
|
|
25
25
|
context 'when updating own account' do
|
|
26
26
|
it 'performs update' do
|
|
27
|
-
put :update, { user: { email: 'mynew@email-address.com' } }
|
|
27
|
+
put :update, params: { user: { email: 'mynew@email-address.com' } }
|
|
28
28
|
expect(assigns[:user].email).to eq 'mynew@email-address.com'
|
|
29
29
|
expect(response).to redirect_to spree.account_url(only_path: true)
|
|
30
30
|
end
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
it 'does not update roles' do
|
|
34
|
-
put :update, user: { spree_role_ids: [role.id] }
|
|
34
|
+
put :update, params: { user: { spree_role_ids: [role.id] } }
|
|
35
35
|
expect(assigns[:user].spree_roles).to_not include role
|
|
36
36
|
end
|
|
37
37
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_auth_devise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Solidus Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: solidus_core
|
|
@@ -30,6 +30,20 @@ dependencies:
|
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '3'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: solidus_support
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
type: :runtime
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
33
47
|
- !ruby/object:Gem::Dependency
|
|
34
48
|
name: devise
|
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -64,42 +78,14 @@ dependencies:
|
|
|
64
78
|
requirements:
|
|
65
79
|
- - "~>"
|
|
66
80
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 1.0
|
|
81
|
+
version: '1.0'
|
|
68
82
|
type: :runtime
|
|
69
83
|
prerelease: false
|
|
70
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
85
|
requirements:
|
|
72
86
|
- - "~>"
|
|
73
87
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 1.0
|
|
75
|
-
- !ruby/object:Gem::Dependency
|
|
76
|
-
name: json
|
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
|
78
|
-
requirements:
|
|
79
|
-
- - ">="
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: '0'
|
|
82
|
-
type: :runtime
|
|
83
|
-
prerelease: false
|
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
-
requirements:
|
|
86
|
-
- - ">="
|
|
87
|
-
- !ruby/object:Gem::Version
|
|
88
|
-
version: '0'
|
|
89
|
-
- !ruby/object:Gem::Dependency
|
|
90
|
-
name: multi_json
|
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
|
92
|
-
requirements:
|
|
93
|
-
- - ">="
|
|
94
|
-
- !ruby/object:Gem::Version
|
|
95
|
-
version: '0'
|
|
96
|
-
type: :runtime
|
|
97
|
-
prerelease: false
|
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
-
requirements:
|
|
100
|
-
- - ">="
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: '0'
|
|
88
|
+
version: '1.0'
|
|
103
89
|
- !ruby/object:Gem::Dependency
|
|
104
90
|
name: solidus_backend
|
|
105
91
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -437,7 +423,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
437
423
|
requirements:
|
|
438
424
|
- none
|
|
439
425
|
rubyforge_project:
|
|
440
|
-
rubygems_version: 2.
|
|
426
|
+
rubygems_version: 2.6.11
|
|
441
427
|
signing_key:
|
|
442
428
|
specification_version: 4
|
|
443
429
|
summary: Provides authentication and authorization services for use with Solidus by
|