omniauth-microsoft_graph 1.0.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b44d91f86e5b9e5ab57466bf82a98dd57d1f02739d2849e010fe4291be36598
4
- data.tar.gz: 5007297df1581f6a1c530bb45f8d452cb00d7943fd06329131a7048eb48c3b0d
3
+ metadata.gz: daf7c5be94277e563c664c962a3672e4a69e0548ae65ab73aa7065fbf972e706
4
+ data.tar.gz: 35c5549de0d4c74f5579e36f9210b4127df997c35ec364105522099a256df96c
5
5
  SHA512:
6
- metadata.gz: a7a505dcd6516579f58bd406b6bde6656eb49d143fd65e89255ea7170269d3bff235c9775f72a71a69266fa5515d34a8a1e5d87d5ac3c842e36a283683237bd1
7
- data.tar.gz: 4202e44174712058a256319a7e856ea2efabc822ca8293c45ee7d994b6b5ba5ae09454a768c90b187d3c5ab1942a965af4a6a29beb789e063858c11e9fb9361a
6
+ metadata.gz: 7a0955a3ba852113b1682de6ba56fa3386d2f52e795f0faa0d35864bf1c549c4b8711dffdfbf8763d3db6167cf24cb69747bace1b597882d25ddf98dda2b0a4b
7
+ data.tar.gz: '09d94fcd169a460597fc56f9836b5053fc4a10d0aed49becaca63c28e6b3cddcf98fa1c1605b90b693f8f541101dafdd8305a840de7952e0a06ebb1c96665992'
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: [synth] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
@@ -9,9 +9,7 @@ name: Ruby
9
9
 
10
10
  on:
11
11
  push:
12
- branches: [ master ]
13
12
  pull_request:
14
- branches: [ master ]
15
13
 
16
14
  jobs:
17
15
  test:
@@ -1,5 +1,5 @@
1
- module Omniauth
1
+ module OmniAuth
2
2
  module MicrosoftGraph
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
@@ -89,7 +89,7 @@ module OmniAuth
89
89
  verifier = body && body['code']
90
90
  client_get_token(verifier, '/auth/microsoft_graph/callback') if verifier
91
91
  rescue JSON::ParserError => e
92
- warn "[omniauth google-oauth2] JSON parse error=#{e}"
92
+ warn "[omniauth microsoft_graph] JSON parse error=#{e}"
93
93
  end
94
94
  end
95
95
  end
@@ -5,7 +5,7 @@ require 'omniauth/microsoft_graph/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "omniauth-microsoft_graph"
8
- spec.version = Omniauth::MicrosoftGraph::VERSION
8
+ spec.version = OmniAuth::MicrosoftGraph::VERSION
9
9
  spec.authors = ["Peter Philips", "Joel Van Horn"]
10
10
  spec.email = ["pete@p373.net", "joel@joelvanhorn.com"]
11
11
  spec.summary = %q{omniauth provider for Microsoft Graph}
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_runtime_dependency 'omniauth', '~> 2.0.4'
21
+ spec.add_runtime_dependency 'omniauth', '~> 2.0'
22
22
  spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.7.1'
23
23
  spec.add_development_dependency "sinatra", '~> 0'
24
24
  spec.add_development_dependency "rake", '~> 12.3.3', '>= 12.3.3'
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-microsoft_graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Philips
8
8
  - Joel Van Horn
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-10-02 00:00:00.000000000 Z
12
+ date: 2022-04-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: omniauth
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 2.0.4
20
+ version: '2.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 2.0.4
27
+ version: '2.0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: omniauth-oauth2
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -109,6 +109,7 @@ executables: []
109
109
  extensions: []
110
110
  extra_rdoc_files: []
111
111
  files:
112
+ - ".github/FUNDING.yml"
112
113
  - ".github/workflows/ruby.yml"
113
114
  - ".travis.yml"
114
115
  - CHANGELOG.md
@@ -128,7 +129,7 @@ homepage: https://github.com/synth/omniauth-microsoft_graph
128
129
  licenses:
129
130
  - MIT
130
131
  metadata: {}
131
- post_install_message:
132
+ post_install_message:
132
133
  rdoc_options: []
133
134
  require_paths:
134
135
  - lib
@@ -143,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
144
  - !ruby/object:Gem::Version
144
145
  version: '0'
145
146
  requirements: []
146
- rubygems_version: 3.1.4
147
- signing_key:
147
+ rubygems_version: 3.1.6
148
+ signing_key:
148
149
  specification_version: 4
149
150
  summary: omniauth provider for Microsoft Graph
150
151
  test_files: