omniauth-kindful-user 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 3a0b822268d4a10c6c7cae406ad384b8a102021f
4
- data.tar.gz: d6a804a8ebee99415e72eb4dba2d8017a2587d92
3
+ metadata.gz: 41a7cc560a4b0fc084c57bbae1fcbfb6b1d80743
4
+ data.tar.gz: b732a5bb847d91711832993968a92cfeac6664fc
5
5
  SHA512:
6
- metadata.gz: 7bc95222f7034dd9a06e3a3c68d90dc89d537650e1230df98266338b1179cf33886e79bf0e5a7bf3e15af091bd969022cecbde968128c0fb20e8b5a0218f9c3e
7
- data.tar.gz: 9f6e9acc1283fc0e70d2ca8095082d1d3c74f7b302e58237b5f7f3204ba451c3e83e32c9f31e7aaba8bb289e5a4af801ff4ab559356b13c88e8c00472464fec5
6
+ metadata.gz: 1b1baa04271269bdca405194dbfd47342768fba9842c347364e034db0f347fc94b1b96d1341e47cead26bf7792c9d11dfc9b4346631d80f4c9da61553442254e
7
+ data.tar.gz: 8f262effd711a2e7c3b96a5c9e19500a3f33b2e4fe5d3109a62eb37293e1022634a8ac9cf0cb8d452f9ff6785a4298950f397cb276e09d210d3f546dbf386d64
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module KindfulUser
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -8,7 +8,7 @@ module OmniAuth
8
8
  option :client_options, {
9
9
  # the site subdomain is specific to the kindful client your working with.
10
10
  :site => 'https://client-subdomain.kindful.com',
11
- :authorize_url => '/oauth2/authenticate',
11
+ :authorize_url => '/oauth2/authorize',
12
12
  :token_url => '/oauth2/token'
13
13
  }
14
14
 
@@ -13,7 +13,7 @@ describe OmniAuth::Strategies::KindfulUser do
13
13
  end
14
14
 
15
15
  it 'should have the correct authorization url' do
16
- expect(subject.client.options[:authorize_url]).to eq("/oauth2/authenticate")
16
+ expect(subject.client.options[:authorize_url]).to eq("/oauth2/authorize")
17
17
  end
18
18
 
19
19
  it 'should have the correct token url' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-kindful-user
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pbrumm