omniauth-service-now 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/ruby.yml +22 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/Gemfile +14 -0
- data/Guardfile +10 -0
- data/LICENSE.txt +7 -0
- data/README.md +64 -0
- data/Rakefile +8 -0
- data/lib/omniauth-service-now.rb +2 -0
- data/lib/omniauth-service-now/version.rb +5 -0
- data/lib/omniauth/strategies/service_now.rb +89 -0
- data/omniauth-service-now.gemspec +25 -0
- data/spec/omniauth/strategies/service_now_spec.rb +58 -0
- data/spec/spec_helper.rb +16 -0
- metadata +149 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5cdf084cebc8eee55da8b756f621878b99894f6f0f52ef7f86f5c86e5f55329d
|
4
|
+
data.tar.gz: eb96020d43a8153607e3485db33b832582292d2b1edbe0c216c9df7b58ff06ae
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d9e739d187c57a94646eb5e44e22ae608d13b23e0019173489f8280be260d4abd70b76e6ca13ed2cc65e3e6976990c4b60a81ddc6884357c305f6e1b260d3138
|
7
|
+
data.tar.gz: b73725010c6e36e1e7990dd5ecc030eed329da92123d70efd05181ff7e3fa653eb16c4968d3329b1cf8f804fbad5f6006e0db8ad0448cbde99914b03f701d59a
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: Ruby
|
2
|
+
|
3
|
+
on: [push]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
ruby-version: ["2.4", "2.5", "2.6", "2.7"]
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
15
|
+
uses: actions/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby-version }}
|
18
|
+
- name: Build and test with Rake
|
19
|
+
run: |
|
20
|
+
gem install bundler
|
21
|
+
bundle install --jobs 4 --retry 3
|
22
|
+
bundle exec rake
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour
|
data/Gemfile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in omniauth-service-now.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
group :development, :test do
|
7
|
+
gem 'guard'
|
8
|
+
gem 'guard-rspec'
|
9
|
+
gem 'guard-bundler'
|
10
|
+
gem 'rb-fsevent'
|
11
|
+
gem 'growl'
|
12
|
+
gem 'rake'
|
13
|
+
gem 'graphlient'
|
14
|
+
end
|
data/Guardfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2021 Quentin Rousseau.
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
![Ruby](https://github.com/kwent/omniauth-service-now/workflows/Ruby/badge.svg?branch=master)
|
2
|
+
|
3
|
+
# OmniAuth ServiceNow
|
4
|
+
|
5
|
+
This is the official OmniAuth strategy for authenticating to ServiceNow. To
|
6
|
+
use it, you'll need to sign up for an OAuth2 Client ID and Secret
|
7
|
+
on the [ServiceNow Developer Page](https://community.servicenow.com/community?id=community_blog&sys_id=56086e4fdb9014146064eeb5ca961957).
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'omniauth-service-now'
|
13
|
+
```
|
14
|
+
|
15
|
+
## Basic Usage
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
use OmniAuth::Builder do
|
19
|
+
provider :service_now, ENV['SERVICE_NOW_CLIENT_ID'], ENV['SERVICE_NOW_CLIENT_SECRET'], { scope: 'useraccount', client_options: { site: 'https://<instance-id>.service-now.com' } }
|
20
|
+
end
|
21
|
+
```
|
22
|
+
|
23
|
+
## Basic Usage Rails
|
24
|
+
|
25
|
+
In `config/initializers/service_now.rb`
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
29
|
+
provider :service_now, ENV['SERVICE_NOW_CLIENT_ID'], ENV['SERVICE_NOW_CLIENT_SECRET'], { scope: 'useraccount', client_options: { site: 'https://<instance-id>.service-now.com' } }
|
30
|
+
end
|
31
|
+
```
|
32
|
+
|
33
|
+
## Dynamic client_id and client_secret
|
34
|
+
|
35
|
+
In `config/initializers/service_now.rb`
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
39
|
+
setup_proc = lambda do |env|
|
40
|
+
req = Rack::Request.new(env)
|
41
|
+
env['omniauth.strategy'].options[:client_options][:site] = req.params['site']
|
42
|
+
env['omniauth.strategy'].options[:client_id] = req.params['client_id']
|
43
|
+
env['omniauth.strategy'].options[:client_secret] = req.params['client_secret']
|
44
|
+
end
|
45
|
+
provider :service_now, nil, nil, { setup: setup_proc, scope: 'useraccount' }
|
46
|
+
end
|
47
|
+
```
|
48
|
+
|
49
|
+
More info: https://github.com/omniauth/omniauth/wiki/Setup-Phase
|
50
|
+
|
51
|
+
## Semver
|
52
|
+
|
53
|
+
This project adheres to Semantic Versioning 2.0.0. Any violations of this scheme are considered to be bugs.
|
54
|
+
All changes will be tracked [here](https://github.com/kwent/omniauth-service-now/releases).
|
55
|
+
|
56
|
+
## License
|
57
|
+
|
58
|
+
Copyright (c) 2021 Quentin Rousseau.
|
59
|
+
|
60
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
61
|
+
|
62
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
63
|
+
|
64
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
require 'omniauth-oauth2'
|
2
|
+
|
3
|
+
module OmniAuth
|
4
|
+
module Strategies
|
5
|
+
class ServiceNow < OmniAuth::Strategies::OAuth2
|
6
|
+
|
7
|
+
SITE_REGEXP = /(?:https:\/\/)?(?:([^.]+)\.)?service-now\.com/
|
8
|
+
|
9
|
+
args %i[client_id client_secret]
|
10
|
+
|
11
|
+
option :name, 'service_now'
|
12
|
+
|
13
|
+
option :client_options, {
|
14
|
+
site: "https://<instance-id>.service-now.com",
|
15
|
+
authorize_url: "/oauth_auth.do",
|
16
|
+
token_url: "/oauth_token.do",
|
17
|
+
response_type: 'code',
|
18
|
+
}
|
19
|
+
|
20
|
+
option :auth_token_params, {
|
21
|
+
grant_type: 'authorization_code',
|
22
|
+
}
|
23
|
+
|
24
|
+
# When `true`, client_id and client_secret are returned in extra['raw_info'].
|
25
|
+
option :extra_client_id_and_client_secret, false
|
26
|
+
|
27
|
+
def authorize_params
|
28
|
+
super.tap do |params|
|
29
|
+
%w[client_options].each do |v|
|
30
|
+
if request.params[v]
|
31
|
+
params[v.to_sym] = request.params[v]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def build_access_token
|
38
|
+
verifier = request.params["code"]
|
39
|
+
# Override regular client when using setup: proc
|
40
|
+
if env['omniauth.params']['client_id'] && env['omniauth.params']['client_secret'] && env['omniauth.params']['site']
|
41
|
+
client = ::OAuth2::Client.new(
|
42
|
+
env['omniauth.params']['client_id'],
|
43
|
+
env['omniauth.params']['client_secret'],
|
44
|
+
site: env['omniauth.params']['site'],
|
45
|
+
authorize_url: options.client_options.authorize_url,
|
46
|
+
token_url: options.client_options.token_url
|
47
|
+
)
|
48
|
+
client.auth_code.get_token(verifier, {:redirect_uri => callback_url}.merge(token_params.to_hash(:symbolize_keys => true)), deep_symbolize(options.auth_token_params))
|
49
|
+
else
|
50
|
+
super
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
uid { smart_site }
|
55
|
+
|
56
|
+
extra do
|
57
|
+
{ raw_info: raw_info, site: smart_site, instance_id: instance_id }
|
58
|
+
end
|
59
|
+
|
60
|
+
def raw_info
|
61
|
+
@raw_info ||= options[:extra_client_id_and_client_secret] ? { client_id: smart_client_id, client_secret: smart_client_secret } : {}
|
62
|
+
end
|
63
|
+
|
64
|
+
def smart_client_id
|
65
|
+
@smart_client_id ||= env['omniauth.params']['client_id'] || env['omniauth.strategy'].options.client_id
|
66
|
+
end
|
67
|
+
|
68
|
+
def smart_client_secret
|
69
|
+
@smart_client_secret ||= env['omniauth.params']['client_secret'] || env['omniauth.strategy'].options.client_secret
|
70
|
+
end
|
71
|
+
|
72
|
+
def smart_site
|
73
|
+
@site ||= env['omniauth.params']['site'] || env['omniauth.strategy'].options.site || options.client_options.site
|
74
|
+
end
|
75
|
+
|
76
|
+
def instance_id
|
77
|
+
@instance_id ||= smart_site.match(SITE_REGEXP)[1] if smart_site
|
78
|
+
end
|
79
|
+
|
80
|
+
def callback_url
|
81
|
+
full_host + script_name + callback_path
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
OmniAuth.config.add_camelization 'service-now', 'ServiceNow'
|
88
|
+
OmniAuth.config.add_camelization 'service_now', 'ServiceNow'
|
89
|
+
OmniAuth.config.add_camelization 'servicenow', 'ServiceNow'
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/omniauth-service-now/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Quentin Rousseau"]
|
6
|
+
gem.email = ["contact@quent.in"]
|
7
|
+
gem.description = %q{Official OmniAuth strategy for ServiceNow.}
|
8
|
+
gem.summary = %q{Official OmniAuth strategy for ServiceNow.}
|
9
|
+
gem.homepage = "https://github.com/kwent/omniauth-service-now"
|
10
|
+
gem.license = "MIT"
|
11
|
+
|
12
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
14
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
15
|
+
gem.name = "omniauth-service-now"
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
gem.version = OmniAuth::ServiceNow::VERSION
|
18
|
+
|
19
|
+
gem.add_dependency 'omniauth', '~> 1.5'
|
20
|
+
gem.add_dependency 'omniauth-oauth2', '>= 1.4.0', '< 2.0'
|
21
|
+
gem.add_development_dependency 'rspec', '~> 3.5'
|
22
|
+
gem.add_development_dependency 'rack-test'
|
23
|
+
gem.add_development_dependency 'simplecov'
|
24
|
+
gem.add_development_dependency 'webmock'
|
25
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe OmniAuth::Strategies::ServiceNow do
|
4
|
+
let(:access_token) { instance_double('AccessToken', :options => {}, :[] => 'user') }
|
5
|
+
let(:parsed_response) { instance_double('ParsedResponse') }
|
6
|
+
let(:response) { instance_double('Response', :parsed => parsed_response) }
|
7
|
+
|
8
|
+
let(:enterprise_site) { 'https://some.other.site.com' }
|
9
|
+
let(:enterprise_authorize_url) { 'https://some.other.site.com/login/oauth/authorize' }
|
10
|
+
let(:enterprise_token_url) { 'https://some.other.site.com/login/oauth/token' }
|
11
|
+
let(:enterprise) do
|
12
|
+
OmniAuth::Strategies::ServiceNow.new('SERVICE_NOW_CLIENT_ID', 'SERVICE_NOW_CLIENT_SECRET',
|
13
|
+
{
|
14
|
+
:client_options => {
|
15
|
+
:site => enterprise_site,
|
16
|
+
:authorize_url => enterprise_authorize_url,
|
17
|
+
:token_url => enterprise_token_url
|
18
|
+
}
|
19
|
+
}
|
20
|
+
)
|
21
|
+
end
|
22
|
+
|
23
|
+
subject do
|
24
|
+
OmniAuth::Strategies::ServiceNow.new({})
|
25
|
+
end
|
26
|
+
|
27
|
+
before(:each) do
|
28
|
+
allow(subject).to receive(:access_token).and_return(access_token)
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'client options' do
|
32
|
+
it 'should have correct site' do
|
33
|
+
expect(subject.options.client_options.site).to eq('https://<instance-id>.service-now.com')
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'should have correct authorize url' do
|
37
|
+
expect(subject.options.client_options.authorize_url).to eq('/oauth_auth.do')
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'should have correct token url' do
|
41
|
+
expect(subject.options.client_options.token_url).to eq('/oauth_token.do')
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'should be overrideable' do
|
45
|
+
it 'for site' do
|
46
|
+
expect(enterprise.options.client_options.site).to eq(enterprise_site)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'for authorize url' do
|
50
|
+
expect(enterprise.options.client_options.authorize_url).to eq(enterprise_authorize_url)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'for token url' do
|
54
|
+
expect(enterprise.options.client_options.token_url).to eq(enterprise_token_url)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
$:.unshift File.expand_path('..', __FILE__)
|
2
|
+
$:.unshift File.expand_path('../../lib', __FILE__)
|
3
|
+
require 'simplecov'
|
4
|
+
SimpleCov.start
|
5
|
+
require 'rspec'
|
6
|
+
require 'rack/test'
|
7
|
+
require 'webmock/rspec'
|
8
|
+
require 'omniauth'
|
9
|
+
require 'omniauth-service-now'
|
10
|
+
|
11
|
+
RSpec.configure do |config|
|
12
|
+
config.include WebMock::API
|
13
|
+
config.include Rack::Test::Methods
|
14
|
+
config.extend OmniAuth::Test::StrategyMacros, :type => :strategy
|
15
|
+
end
|
16
|
+
|
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-service-now
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Quentin Rousseau
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-01-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: omniauth
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: omniauth-oauth2
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.4.0
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '2.0'
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.4.0
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '2.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rspec
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '3.5'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '3.5'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: rack-test
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: simplecov
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
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: webmock
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
description: Official OmniAuth strategy for ServiceNow.
|
104
|
+
email:
|
105
|
+
- contact@quent.in
|
106
|
+
executables: []
|
107
|
+
extensions: []
|
108
|
+
extra_rdoc_files: []
|
109
|
+
files:
|
110
|
+
- ".github/workflows/ruby.yml"
|
111
|
+
- ".gitignore"
|
112
|
+
- ".rspec"
|
113
|
+
- Gemfile
|
114
|
+
- Guardfile
|
115
|
+
- LICENSE.txt
|
116
|
+
- README.md
|
117
|
+
- Rakefile
|
118
|
+
- lib/omniauth-service-now.rb
|
119
|
+
- lib/omniauth-service-now/version.rb
|
120
|
+
- lib/omniauth/strategies/service_now.rb
|
121
|
+
- omniauth-service-now.gemspec
|
122
|
+
- spec/omniauth/strategies/service_now_spec.rb
|
123
|
+
- spec/spec_helper.rb
|
124
|
+
homepage: https://github.com/kwent/omniauth-service-now
|
125
|
+
licenses:
|
126
|
+
- MIT
|
127
|
+
metadata: {}
|
128
|
+
post_install_message:
|
129
|
+
rdoc_options: []
|
130
|
+
require_paths:
|
131
|
+
- lib
|
132
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0'
|
137
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - ">="
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
requirements: []
|
143
|
+
rubygems_version: 3.0.3
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Official OmniAuth strategy for ServiceNow.
|
147
|
+
test_files:
|
148
|
+
- spec/omniauth/strategies/service_now_spec.rb
|
149
|
+
- spec/spec_helper.rb
|