omniauth-clever 1.0.1 → 1.1.0
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 +5 -13
- data/README.md +2 -2
- data/lib/omniauth/clever/version.rb +1 -1
- data/lib/omniauth/strategies/clever.rb +3 -3
- data/omniauth-clever.gemspec +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
MjU5ZGEyNzVlNzFmOThlMTNmMzM3YTkxNzlkOTAyZGNkN2E5ZDNkZA==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 466f1d215467607523f0e1d0b831d39006e3f3a3
|
|
4
|
+
data.tar.gz: 83abc68cdbc414e860b9c2dd3d60afda9bd87619
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
NTEwNmU3YjFlNDY4MWYzMTg1MWE4NTI0ZmRlY2FhYTQyNzRiNDE3YTQ4ZTI2
|
|
11
|
-
NGJhZmY4MTFkM2ZhMjUzZjFmZmU4MmI1ODkxMjYzZjc5OTcwYzQ=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
NWJkNWYyZTMxZmE3ZDI4NTQyNWNkN2IwM2FjZTBlMWU1NmE1N2MyMDAzN2Q2
|
|
14
|
-
ZWM5YzYwNzBmMDM0ODEwMDcwYTliYzk2YTVhMjE4NTRmNzFkMjNjYmQzYWE3
|
|
15
|
-
ZGFjOGE3NDEwYTYzYWZiYzA5YjhiYWE4NDg1YzcwMmRlYTE4YmI=
|
|
6
|
+
metadata.gz: 4f3c112e9e3afbb6dccc78e51f82980ccf9668ad73ce53817b59d72d60e358598afa74d707c670b202cfdaf9a4d318b742d21a0fbe8ee219b45d2866a4049c24
|
|
7
|
+
data.tar.gz: c1d140d42ef890a0b89f1c3b0dcfd252c78d43f10fb46b0b255ac4a64628ceb968f11348846798a7584bc623103a769f7e14a75ef05b71b1ac7bc6d740ab8744
|
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# OmniAuth Clever
|
|
2
2
|
|
|
3
|
-
Unofficial OmniAuth strategy for [Clever SSO OAuth2](https://
|
|
3
|
+
Unofficial OmniAuth strategy for [Clever SSO OAuth2](https://clever.com/developers/docs/oauth) integration.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
Add the gem to your application's Gemfile:
|
|
8
8
|
|
|
9
|
-
gem 'omniauth-clever', '~> 1.
|
|
9
|
+
gem 'omniauth-clever', '~> 1.1.0'
|
|
10
10
|
|
|
11
11
|
And then execute:
|
|
12
12
|
|
|
@@ -7,9 +7,9 @@ module OmniAuth
|
|
|
7
7
|
option :name, "clever"
|
|
8
8
|
|
|
9
9
|
option :client_options, {
|
|
10
|
-
:site => 'https://api.
|
|
11
|
-
:authorize_url => 'https://account.
|
|
12
|
-
:token_url => 'https://api.
|
|
10
|
+
:site => 'https://api.clever.com',
|
|
11
|
+
:authorize_url => 'https://account.clever.com/oauth/authorize',
|
|
12
|
+
:token_url => 'https://api.clever.com/oauth/token'
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
def authorize_params
|
data/omniauth-clever.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.version = Omniauth::Clever::VERSION
|
|
9
9
|
gem.authors = ["Carol Nichols"]
|
|
10
10
|
gem.email = ["cnichols@thinkthroughmath.com"]
|
|
11
|
-
gem.description = %q{Unofficial OmniAuth strategy for
|
|
12
|
-
gem.summary = %q{The unofficial strategy for authenticating people using
|
|
11
|
+
gem.description = %q{Unofficial OmniAuth strategy for clever.com SSO OAuth2 integration}
|
|
12
|
+
gem.summary = %q{The unofficial strategy for authenticating people using clever.com to your application using Clever's OAuth2 provider}
|
|
13
13
|
gem.homepage = "https://github.com/thinkthroughmath/omniauth-clever"
|
|
14
14
|
gem.license = 'MIT'
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-clever
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carol Nichols
|
|
@@ -9,23 +9,23 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain:
|
|
11
11
|
- gem-public_cert.pem
|
|
12
|
-
date:
|
|
12
|
+
date: 2014-07-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
type: :runtime
|
|
16
|
-
prerelease: false
|
|
17
15
|
name: omniauth-oauth2
|
|
18
16
|
requirement: !ruby/object:Gem::Requirement
|
|
19
17
|
requirements:
|
|
20
18
|
- - ~>
|
|
21
19
|
- !ruby/object:Gem::Version
|
|
22
20
|
version: 1.1.1
|
|
21
|
+
type: :runtime
|
|
22
|
+
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - ~>
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: 1.1.1
|
|
28
|
-
description: Unofficial OmniAuth strategy for
|
|
28
|
+
description: Unofficial OmniAuth strategy for clever.com SSO OAuth2 integration
|
|
29
29
|
email:
|
|
30
30
|
- cnichols@thinkthroughmath.com
|
|
31
31
|
executables: []
|
|
@@ -53,19 +53,19 @@ require_paths:
|
|
|
53
53
|
- lib
|
|
54
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
55
|
requirements:
|
|
56
|
-
- -
|
|
56
|
+
- - '>='
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
58
|
version: '0'
|
|
59
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
|
61
|
-
- -
|
|
61
|
+
- - '>='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
63
|
version: '0'
|
|
64
64
|
requirements: []
|
|
65
65
|
rubyforge_project:
|
|
66
|
-
rubygems_version: 2.
|
|
66
|
+
rubygems_version: 2.2.0
|
|
67
67
|
signing_key:
|
|
68
68
|
specification_version: 4
|
|
69
|
-
summary: The unofficial strategy for authenticating people using
|
|
70
|
-
|
|
69
|
+
summary: The unofficial strategy for authenticating people using clever.com to your
|
|
70
|
+
application using Clever's OAuth2 provider
|
|
71
71
|
test_files: []
|