omniauth-webex-oauth2 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/Gemfile +1 -4
- data/Gemfile.lock +17 -34
- data/README.md +6 -2
- data/lib/omniauth/webex/version.rb +1 -1
- data/omniauth-webex-oauth2.gemspec +1 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11967ebdafd58743381c2a23ffcd2064b893cc1c
|
4
|
+
data.tar.gz: 86121abc58761e4f4e53740efce47b7a4b50faa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a634592c7090e03986b77ac0f09405cd0efda9b9c88e4880128ee26a84c93621fe0e37d13742ba7c0a17bce62095126ba5fdbf4a91ebe59141b19812b2c3037
|
7
|
+
data.tar.gz: b20e09f7443ea8dca8783f615de3311f9250b7c9554ca57f129362b2a29fd7f92959655cc4db0038dbc6e68090258317f7f30ced5f61586cbfc0c3ec8f7b2633
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,21 +1,17 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
omniauth-webex-oauth2 (0.0.
|
4
|
+
omniauth-webex-oauth2 (0.0.2)
|
5
5
|
omniauth-oauth2 (~> 1.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
|
11
|
-
coolline (0.5.0)
|
12
|
-
unicode_utils (~> 1.4)
|
13
|
-
diff-lcs (1.2.5)
|
10
|
+
diff-lcs (1.3)
|
14
11
|
faraday (0.9.2)
|
15
12
|
multipart-post (>= 1.2, < 3)
|
16
|
-
hashie (3.4.
|
13
|
+
hashie (3.4.6)
|
17
14
|
jwt (1.5.4)
|
18
|
-
method_source (0.8.2)
|
19
15
|
multi_json (1.12.2)
|
20
16
|
multi_xml (0.5.5)
|
21
17
|
multipart-post (2.0.0)
|
@@ -25,46 +21,33 @@ GEM
|
|
25
21
|
multi_json (~> 1.3)
|
26
22
|
multi_xml (~> 0.5)
|
27
23
|
rack (>= 1.2, < 3)
|
28
|
-
omniauth (1.3.
|
24
|
+
omniauth (1.3.2)
|
29
25
|
hashie (>= 1.2, < 4)
|
30
26
|
rack (>= 1.0, < 3)
|
31
27
|
omniauth-oauth2 (1.3.1)
|
32
28
|
oauth2 (~> 1.0)
|
33
29
|
omniauth (~> 1.2)
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
rake (10.1.0)
|
44
|
-
rspec (3.4.0)
|
45
|
-
rspec-core (~> 3.4.0)
|
46
|
-
rspec-expectations (~> 3.4.0)
|
47
|
-
rspec-mocks (~> 3.4.0)
|
48
|
-
rspec-core (3.4.4)
|
49
|
-
rspec-support (~> 3.4.0)
|
50
|
-
rspec-expectations (3.4.0)
|
30
|
+
rack (1.6.10)
|
31
|
+
rake (10.5.0)
|
32
|
+
rspec (3.7.0)
|
33
|
+
rspec-core (~> 3.7.0)
|
34
|
+
rspec-expectations (~> 3.7.0)
|
35
|
+
rspec-mocks (~> 3.7.0)
|
36
|
+
rspec-core (3.7.1)
|
37
|
+
rspec-support (~> 3.7.0)
|
38
|
+
rspec-expectations (3.7.0)
|
51
39
|
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
-
rspec-support (~> 3.
|
53
|
-
rspec-mocks (3.
|
40
|
+
rspec-support (~> 3.7.0)
|
41
|
+
rspec-mocks (3.7.0)
|
54
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
-
rspec-support (~> 3.
|
56
|
-
rspec-support (3.
|
57
|
-
slop (3.6.0)
|
58
|
-
unicode_utils (1.4.0)
|
43
|
+
rspec-support (~> 3.7.0)
|
44
|
+
rspec-support (3.7.1)
|
59
45
|
|
60
46
|
PLATFORMS
|
61
47
|
ruby
|
62
48
|
|
63
49
|
DEPENDENCIES
|
64
50
|
omniauth-webex-oauth2!
|
65
|
-
pry
|
66
|
-
pry-coolline
|
67
|
-
pry-nav
|
68
51
|
rake (~> 10.0)
|
69
52
|
rspec (~> 3.4)
|
70
53
|
|
data/README.md
CHANGED
@@ -1,13 +1,17 @@
|
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/omniauth-webex-oauth2.svg)](https://badge.fury.io/rb/omniauth-webex-oauth2)
|
2
|
+
[![Build Status](https://travis-ci.org/suhaspan/omniauth-webex-oauth2.svg?branch=master)](https://travis-ci.org/suhaspan/omniauth-webex-oauth2)
|
3
|
+
[![Code Climate](https://codeclimate.com/github/suhaspan/omniauth-webex-oauth2/badges/gpa.svg)](https://codeclimate.com/github/suhaspan/omniauth-webex-oauth2)
|
4
|
+
|
5
|
+
|
1
6
|
# OmniAuth::Strategies::Webex
|
2
7
|
|
3
8
|
OAuth2 Strategy for [Cisco WebEx Teams (Cisco Spark)](https://www.webex.com/products/teams/index.html)
|
4
9
|
|
5
10
|
## Installation
|
6
11
|
|
7
|
-
Add this line to your application's Gemfile
|
12
|
+
Add this line to your application's Gemfile:
|
8
13
|
|
9
14
|
```ruby
|
10
|
-
gem 'omniauth'
|
11
15
|
gem 'omniauth-webex-oauth2'
|
12
16
|
```
|
13
17
|
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
puts lib
|
4
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
4
|
require 'omniauth/webex/version'
|
6
5
|
|
@@ -11,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
11
10
|
spec.email = ['suhas0284@gmail.com']
|
12
11
|
|
13
12
|
spec.summary = %q{A Cisco WebEx Teams (Cisco Spark) OAuth2 strategy.}
|
14
|
-
spec.description = %q{A Cisco WebEx Teams (Cisco Spark) OAuth2 strategy. Create account and generate client_id and client_secret.}
|
13
|
+
spec.description = %q{A Cisco WebEx Teams (Cisco Spark) OAuth2 strategy. Create an account and generate client_id and client_secret.}
|
15
14
|
spec.homepage = 'https://github.com/suhaspan/omniauth-webex-oauth2'
|
16
15
|
spec.license = 'MIT'
|
17
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-webex-oauth2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suhas Nehete
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth-oauth2
|
@@ -52,8 +52,8 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.4'
|
55
|
-
description: A Cisco WebEx Teams (Cisco Spark) OAuth2 strategy. Create account
|
56
|
-
generate client_id and client_secret.
|
55
|
+
description: A Cisco WebEx Teams (Cisco Spark) OAuth2 strategy. Create an account
|
56
|
+
and generate client_id and client_secret.
|
57
57
|
email:
|
58
58
|
- suhas0284@gmail.com
|
59
59
|
executables: []
|