omniauth-samaritan 0.1.1 → 0.1.2
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,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZTg1ZmMwZGQ4MmVhYjkyNTIwMTdkYmJkZDM3YjhkZjY2M2ZiOGRlMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NzdiNTQ1OTcyMzJmMzgzNWQzOTBiNTFiZDM2M2E2YmFhMTIyN2U1Mw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjUzYTFkMGU1YWRhMTIzYmQxNDczMDE3NzJjZDJjZjUwYjczYzNiOGMyNDZl
|
|
10
|
+
OWNiZDY5MmZhZjUzNThmYWVhMDhjODk1ZmI2OThlNDZiYmFlMmY4MDliZGY2
|
|
11
|
+
NmE5MGYwYjZhZTZhMzBjYTY0ZWI4ZThkNGY3NDZhNjUxZDgwMGQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWY5YWExOGU3YjYzODAxZmEyZTcxZjZlYmViNTI0NGJhMjM2Y2EyNDk2MzQ3
|
|
14
|
+
MjJmZWUwMGU3MzRhNzI0ZDI4NzQwYjc0NTUzZGNjMzEyODk4NTE4N2U2MTc1
|
|
15
|
+
YTY1ZWNiZGQxOTA2ZTgzMTI5NzE1NWUxYjFhNTQyNTM1YzI0Y2Y=
|
|
@@ -15,7 +15,7 @@ module OmniAuth
|
|
|
15
15
|
:identity_url => 'https://sandbox.smchcn.net/smi/api/identity/mine'}
|
|
16
16
|
|
|
17
17
|
option :production_client_options, {
|
|
18
|
-
:authorize_url => 'https://accounts.samaritanministries.org/auth',
|
|
18
|
+
:authorize_url => 'https://accounts.samaritanministries.org/auth/smi/oauth/authorize',
|
|
19
19
|
:token_url => 'https://accounts.samaritanministries.org/auth/smi/oauth/token',
|
|
20
20
|
:identity_url => 'https://platformapi.samaritanministries.org/smi/api/identity/mine'}
|
|
21
21
|
|
data/omniauth-samaritan.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |gem|
|
|
|
5
5
|
gem.add_dependency 'omniauth', '~> 1.0'
|
|
6
6
|
|
|
7
7
|
gem.authors = ["Doug Bradbury", "Ben Voss"]
|
|
8
|
-
gem.email = ["smi@8thlight.com"]
|
|
8
|
+
gem.email = ["smi@8thlight.com", "chandlerroth@smchcn.net"]
|
|
9
9
|
gem.description = %q{A Samaritan OAuth2 strategy for OmniAuth 1.x.}
|
|
10
10
|
gem.summary = %q{A Samaritan OAuth2 strategy for OmniAuth 1.x}
|
|
11
11
|
gem.homepage = "http://docs.samaritanministries.org/ruby-oauth/"
|
|
@@ -28,7 +28,7 @@ describe OmniAuth::Strategies::Samaritan do
|
|
|
28
28
|
describe '#client_options' do
|
|
29
29
|
it 'has correct authorize_url' do
|
|
30
30
|
@options = {:environment => :production}
|
|
31
|
-
subject.client.options[:authorize_url].should eq('https://accounts.samaritanministries.org/auth')
|
|
31
|
+
subject.client.options[:authorize_url].should eq('https://accounts.samaritanministries.org/auth/smi/oauth/authorize')
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
it 'has correct token_url' do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-samaritan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Doug Bradbury
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-07-
|
|
12
|
+
date: 2014-07-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: omniauth
|
|
@@ -82,6 +82,7 @@ dependencies:
|
|
|
82
82
|
description: A Samaritan OAuth2 strategy for OmniAuth 1.x.
|
|
83
83
|
email:
|
|
84
84
|
- smi@8thlight.com
|
|
85
|
+
- chandlerroth@smchcn.net
|
|
85
86
|
executables: []
|
|
86
87
|
extensions: []
|
|
87
88
|
extra_rdoc_files: []
|