omniauth-openid 2.0.1 → 2.0.2

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.
@@ -1,6 +1,6 @@
1
- require 'omniauth'
2
- require 'rack/openid'
3
- require 'openid/store/memory'
1
+ require "omniauth"
2
+ require "rack/openid"
3
+ require "openid/store/memory"
4
4
 
5
5
  module OmniAuth
6
6
  module Strategies
@@ -10,40 +10,65 @@ module OmniAuth
10
10
  include OmniAuth::Strategy
11
11
 
12
12
  AX = {
13
- :email => 'http://axschema.org/contact/email',
14
- :name => 'http://axschema.org/namePerson',
15
- :nickname => 'http://axschema.org/namePerson/friendly',
16
- :first_name => 'http://axschema.org/namePerson/first',
17
- :last_name => 'http://axschema.org/namePerson/last',
18
- :city => 'http://axschema.org/contact/city/home',
19
- :state => 'http://axschema.org/contact/state/home',
20
- :website => 'http://axschema.org/contact/web/default',
21
- :image => 'http://axschema.org/media/image/aspect11'
13
+ email: "http://axschema.org/contact/email",
14
+ name: "http://axschema.org/namePerson",
15
+ nickname: "http://axschema.org/namePerson/friendly",
16
+ first_name: "http://axschema.org/namePerson/first",
17
+ last_name: "http://axschema.org/namePerson/last",
18
+ city: "http://axschema.org/contact/city/home",
19
+ state: "http://axschema.org/contact/state/home",
20
+ website: "http://axschema.org/contact/web/default",
21
+ image: "http://axschema.org/media/image/aspect11",
22
22
  }
23
23
 
24
24
  option :name, :open_id
25
- option :required, [AX[:email], AX[:name], AX[:first_name], AX[:last_name], 'email', 'fullname']
26
- option :optional, [AX[:nickname], AX[:city], AX[:state], AX[:website], AX[:image], 'postcode', 'nickname']
25
+ option :required, [AX[:email], AX[:name], AX[:first_name], AX[:last_name], "email", "fullname"]
26
+ option :optional, [AX[:nickname], AX[:city], AX[:state], AX[:website], AX[:image], "postcode", "nickname"]
27
+ option :immediate, false
28
+ option :trust_root, proc { |root_uri| nil }
27
29
  option :store, ::OpenID::Store::Memory.new
28
30
  option :identifier, nil
29
- option :identifier_param, 'openid_url'
31
+ option :identifier_param, "openid_url"
32
+ option :trust_root, nil
30
33
 
31
34
  def dummy_app
32
- lambda{|env| [401, {"WWW-Authenticate" => Rack::OpenID.build_header(
33
- :identifier => identifier,
34
- :return_to => callback_url,
35
- :required => options.required,
36
- :optional => options.optional,
37
- :method => 'post'
38
- )}, []]}
35
+ lambda { |env|
36
+ req = Rack::Request.new(env)
37
+ root_uri = "#{req.scheme}://#{req.host_with_port}/"
38
+ trust_root = if options.trust_root
39
+ if options.trust_root.respond_to?(:call)
40
+ options.trust_root.call(root_uri)
41
+ else
42
+ options.trust_root
43
+ end
44
+ else
45
+ %r{^(https?://[^/]+)}.match(callback_url) { |m| m[1] }
46
+ end
47
+
48
+ [
49
+ 401,
50
+ {
51
+ "WWW-Authenticate" => Rack::OpenID.build_header(
52
+ identifier: identifier,
53
+ return_to: callback_url,
54
+ trust_root: trust_root,
55
+ required: options.required,
56
+ optional: options.optional,
57
+ method: "post",
58
+ immediate: options.immediate,
59
+ ),
60
+ },
61
+ [],
62
+ ]
63
+ }
39
64
  end
40
65
 
41
66
  def identifier
42
67
  i = options.identifier || request.params[options.identifier_param.to_s]
43
- i = nil if i == ''
68
+ i = nil if i == ""
44
69
  i
45
70
  end
46
-
71
+
47
72
  def request_phase
48
73
  identifier ? start : get_identifier
49
74
  end
@@ -51,7 +76,7 @@ module OmniAuth
51
76
  def start
52
77
  openid = Rack::OpenID.new(dummy_app, options[:store])
53
78
  response = openid.call(env)
54
- case env['rack.openid.response']
79
+ case env["rack.openid.response"]
55
80
  when Rack::OpenID::MissingResponse, Rack::OpenID::TimeoutResponse
56
81
  fail!(:connection_failed)
57
82
  else
@@ -60,9 +85,9 @@ module OmniAuth
60
85
  end
61
86
 
62
87
  def get_identifier
63
- f = OmniAuth::Form.new(:title => 'OpenID Authentication')
64
- f.label_field('OpenID Identifier', options.identifier_param)
65
- f.input_field('url', options.identifier_param)
88
+ f = OmniAuth::Form.new(title: "OpenID Authentication")
89
+ f.label_field("OpenID Identifier", options.identifier_param)
90
+ f.input_field("url", options.identifier_param)
66
91
  f.to_response
67
92
  end
68
93
 
@@ -73,7 +98,7 @@ module OmniAuth
73
98
  end
74
99
 
75
100
  extra do
76
- {'response' => openid_response}
101
+ {"response" => openid_response}
77
102
  end
78
103
 
79
104
  def callback_phase
@@ -83,9 +108,9 @@ module OmniAuth
83
108
 
84
109
  def openid_response
85
110
  unless @openid_response
86
- openid = Rack::OpenID.new(lambda{|env| [200,{},[]]}, options[:store])
111
+ openid = Rack::OpenID.new(lambda { |env| [200, {}, []] }, options[:store])
87
112
  openid.call(env)
88
- @openid_response = env.delete('rack.openid.response')
113
+ @openid_response = env.delete("rack.openid.response")
89
114
  end
90
115
  @openid_response
91
116
  end
@@ -94,29 +119,31 @@ module OmniAuth
94
119
  sreg = ::OpenID::SReg::Response.from_success_response(openid_response)
95
120
  return {} unless sreg
96
121
  {
97
- 'email' => sreg['email'],
98
- 'name' => sreg['fullname'],
99
- 'location' => sreg['postcode'],
100
- 'nickname' => sreg['nickname']
101
- }.reject{|k,v| v.nil? || v == ''}
122
+ "email" => sreg["email"],
123
+ "name" => sreg["fullname"],
124
+ "location" => sreg["postcode"],
125
+ "nickname" => sreg["nickname"],
126
+ }.reject { |k, v| v.nil? || v == "" }
102
127
  end
103
128
 
104
129
  def ax_user_info
105
130
  ax = ::OpenID::AX::FetchResponse.from_success_response(openid_response)
106
131
  return {} unless ax
107
132
  {
108
- 'email' => ax.get_single(AX[:email]),
109
- 'first_name' => ax.get_single(AX[:first_name]),
110
- 'last_name' => ax.get_single(AX[:last_name]),
111
- 'name' => (ax.get_single(AX[:name]) || [ax.get_single(AX[:first_name]), ax.get_single(AX[:last_name])].join(' ')).strip,
112
- 'location' => ("#{ax.get_single(AX[:city])}, #{ax.get_single(AX[:state])}" if Array(ax.get_single(AX[:city])).any? && Array(ax.get_single(AX[:state])).any?),
113
- 'nickname' => ax.get_single(AX[:nickname]),
114
- 'urls' => ({'Website' => Array(ax.get_single(AX[:website])).first} if Array(ax.get_single(AX[:website])).any?)
115
- }.inject({}){|h,(k,v)| h[k] = Array(v).first; h}.reject{|k,v| v.nil? || v == ''}
133
+ "email" => ax.get_single(AX[:email]),
134
+ "first_name" => ax.get_single(AX[:first_name]),
135
+ "last_name" => ax.get_single(AX[:last_name]),
136
+ "name" => (ax.get_single(AX[:name]) || [ax.get_single(AX[:first_name]), ax.get_single(AX[:last_name])].join(" ")).strip,
137
+ "location" => ("#{ax.get_single(AX[:city])}, #{ax.get_single(AX[:state])}" if Array(ax.get_single(AX[:city])).any? && Array(ax.get_single(AX[:state])).any?),
138
+ "nickname" => ax.get_single(AX[:nickname]),
139
+ "urls" => ({"Website" => Array(ax.get_single(AX[:website])).first} if Array(ax.get_single(AX[:website])).any?),
140
+ }.each_with_object({}) { |(k, v), h|
141
+ h[k] = Array(v).first
142
+ }.reject { |k, v| v.nil? || v == "" }
116
143
  end
117
144
  end
118
145
  end
119
146
  end
120
147
 
121
- OmniAuth.config.add_camelization 'openid', 'OpenID'
122
- OmniAuth.config.add_camelization 'open_id', 'OpenID'
148
+ OmniAuth.config.add_camelization("openid", "OpenID")
149
+ OmniAuth.config.add_camelization("open_id", "OpenID")
@@ -1,5 +1,18 @@
1
- module OmniAuth
2
- module OpenID
3
- VERSION = '2.0.1'
1
+ # DEPRECATED
2
+ # TODO[v3]: Remove this file entirely with v3 release.
3
+ # :nocov:
4
+ unless defined?(OmniAuth::Identity::Version::VERSION)
5
+ # external gems
6
+ require "version_gem"
7
+
8
+ # this library's version
9
+ require "omniauth/openid/version"
10
+
11
+ # Configure version before loading the rest of the library
12
+ OmniAuth::OpenID::Version.class_eval do
13
+ extend VersionGem::Basic
4
14
  end
15
+
16
+ warn "[DEPRECATION][omniauth-openid v2] Change `require 'omniauth-openid/version'` to `require 'omniauth/openid/version'`. Support for `require 'omniauth-openid/version'` will be removed in v3."
5
17
  end
18
+ # :nocov:
@@ -1,2 +1,14 @@
1
- require 'omniauth-openid/version'
2
- require 'omniauth/strategies/open_id'
1
+ # external gems
2
+ require "version_gem"
3
+ require "rexml"
4
+
5
+ # this library's version
6
+ require "omniauth/openid/version"
7
+
8
+ # Configure version before loading the rest of the library
9
+ OmniAuth::OpenID::Version.class_eval do
10
+ extend VersionGem::Basic
11
+ end
12
+
13
+ # This library
14
+ require "omniauth/strategies/open_id"
data.tar.gz.sig ADDED
@@ -0,0 +1,4 @@
1
+ ǿ��
2
+ i!��@��B����99�TS&�V{D���זK�e��[u�pTΆ� t�6P�Ç,,0�{��B��ZH��p���L|���'��Y��P#�U��ſ �� >g��[�u�zSD}�<p�ڰ�y
3
+ ��;�2R9�yU���
4
+ ���^�b�1�:�
metadata CHANGED
@@ -1,16 +1,44 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-openid
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
+ - Peter Boling
7
8
  - Michael Bleigh
8
9
  - Erik Michaels-Ober
9
10
  - Tom Milewski
10
- autorequire:
11
- bindir: bin
12
- cert_chain: []
13
- date: 2021-01-19 00:00:00.000000000 Z
11
+ bindir: exe
12
+ cert_chain:
13
+ - |
14
+ -----BEGIN CERTIFICATE-----
15
+ MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
16
+ ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
17
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
18
+ DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
19
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
20
+ uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
21
+ LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
22
+ mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
23
+ coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
24
+ FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
25
+ yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
26
+ to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
27
+ qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
28
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
29
+ HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
30
+ A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
31
+ ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
32
+ wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
33
+ L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
34
+ GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
35
+ kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
36
+ QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
37
+ 0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
38
+ DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
39
+ L9nRqA==
40
+ -----END CERTIFICATE-----
41
+ date: 2025-06-08 00:00:00.000000000 Z
14
42
  dependencies:
15
43
  - !ruby/object:Gem::Dependency
16
44
  name: omniauth
@@ -18,84 +46,241 @@ dependencies:
18
46
  requirements:
19
47
  - - ">="
20
48
  - !ruby/object:Gem::Version
21
- version: '1.0'
22
- - - "<"
49
+ version: '1.1'
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
23
55
  - !ruby/object:Gem::Version
24
- version: '3.0'
56
+ version: '1.1'
57
+ - !ruby/object:Gem::Dependency
58
+ name: rack-openid
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '1.4'
25
64
  type: :runtime
26
65
  prerelease: false
27
66
  version_requirements: !ruby/object:Gem::Requirement
28
67
  requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '1.4'
71
+ - !ruby/object:Gem::Dependency
72
+ name: ruby-openid
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '2.1'
29
78
  - - ">="
30
79
  - !ruby/object:Gem::Version
31
- version: '1.0'
32
- - - "<"
80
+ version: 2.1.8
81
+ type: :runtime
82
+ prerelease: false
83
+ version_requirements: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '2.1'
88
+ - - ">="
33
89
  - !ruby/object:Gem::Version
34
- version: '3.0'
90
+ version: 2.1.8
35
91
  - !ruby/object:Gem::Dependency
36
- name: rack-openid
92
+ name: version_gem
37
93
  requirement: !ruby/object:Gem::Requirement
38
94
  requirements:
39
95
  - - "~>"
40
96
  - !ruby/object:Gem::Version
41
- version: 1.4.0
97
+ version: '1.1'
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: 1.1.8
42
101
  type: :runtime
43
102
  prerelease: false
44
103
  version_requirements: !ruby/object:Gem::Requirement
45
104
  requirements:
46
105
  - - "~>"
47
106
  - !ruby/object:Gem::Version
48
- version: 1.4.0
49
- description: OpenID strategy for OmniAuth.
107
+ version: '1.1'
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 1.1.8
111
+ - !ruby/object:Gem::Dependency
112
+ name: rack-session
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '1'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '1'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rack-test
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '2.2'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '2.2'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rake
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '13'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '13'
153
+ - !ruby/object:Gem::Dependency
154
+ name: rspec
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '3'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '3'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rspec-block_is_expected
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '1.0'
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: 1.0.6
177
+ type: :development
178
+ prerelease: false
179
+ version_requirements: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - "~>"
182
+ - !ruby/object:Gem::Version
183
+ version: '1.0'
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: 1.0.6
187
+ - !ruby/object:Gem::Dependency
188
+ name: webmock
189
+ requirement: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - "~>"
192
+ - !ruby/object:Gem::Version
193
+ version: '3.18'
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ version: 3.18.1
197
+ type: :development
198
+ prerelease: false
199
+ version_requirements: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - "~>"
202
+ - !ruby/object:Gem::Version
203
+ version: '3.18'
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: 3.18.1
207
+ - !ruby/object:Gem::Dependency
208
+ name: stone_checksums
209
+ requirement: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - "~>"
212
+ - !ruby/object:Gem::Version
213
+ version: '1.0'
214
+ type: :development
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - "~>"
219
+ - !ruby/object:Gem::Version
220
+ version: '1.0'
221
+ description: OpenID (not OIDC) strategy for OmniAuth.
50
222
  email:
51
- - michael@intridea.com
52
- - sferik@gmail.com
53
- - tmilewski@gmail.com
223
+ - floss@galtzo.com
54
224
  executables: []
55
225
  extensions: []
56
- extra_rdoc_files: []
226
+ extra_rdoc_files:
227
+ - CHANGELOG.md
228
+ - CODE_OF_CONDUCT.md
229
+ - CONTRIBUTING.md
230
+ - LICENSE.txt
231
+ - README.md
232
+ - SECURITY.md
57
233
  files:
58
- - ".gemtest"
59
- - ".gitignore"
60
- - ".rspec"
61
- - ".travis.yml"
62
- - ".yardopts"
63
- - Gemfile
64
- - Gemfile.lock
65
- - Guardfile
66
- - LICENSE
234
+ - CHANGELOG.md
235
+ - CODE_OF_CONDUCT.md
236
+ - CONTRIBUTING.md
237
+ - LICENSE.txt
67
238
  - README.md
68
- - Rakefile
69
- - examples/sinatra.rb
239
+ - SECURITY.md
70
240
  - lib/omniauth-openid.rb
71
241
  - lib/omniauth-openid/version.rb
242
+ - lib/omniauth/openid/version.rb
72
243
  - lib/omniauth/strategies/open_id.rb
73
- - omniauth-openid.gemspec
74
- - spec/omniauth/strategies/open_id_spec.rb
75
- - spec/spec_helper.rb
76
- homepage: https://github.com/intridea/omniauth-openid
244
+ homepage: https://github.com/omniauth/omniauth-openid
77
245
  licenses:
78
246
  - MIT
79
- metadata: {}
80
- post_install_message:
81
- rdoc_options: []
247
+ metadata:
248
+ homepage_uri: https://railsbling.com/tags/omniauth-openid/
249
+ source_code_uri: https://github.com/omniauth/omniauth-openid/tree/v2.0.2
250
+ changelog_uri: https://github.com/omniauth/omniauth-openid/blob/v2.0.2/CHANGELOG.md
251
+ bug_tracker_uri: https://github.com/omniauth/omniauth-openid/issues
252
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-openid/2.0.2
253
+ wiki_uri: https://github.com/omniauth/omniauth-openid/wiki
254
+ funding_uri: https://liberapay.com/pboling
255
+ news_uri: https://www.railsbling.com/tags/omniauth-openid
256
+ rubygems_mfa_required: 'true'
257
+ rdoc_options:
258
+ - "--title"
259
+ - omniauth-openid - OpenID strategy for OmniAuth.
260
+ - "--main"
261
+ - CHANGELOG.md
262
+ - CODE_OF_CONDUCT.md
263
+ - CONTRIBUTING.md
264
+ - LICENSE.txt
265
+ - README.md
266
+ - SECURITY.md
267
+ - "--line-numbers"
268
+ - "--inline-source"
269
+ - "--quiet"
82
270
  require_paths:
83
271
  - lib
84
272
  required_ruby_version: !ruby/object:Gem::Requirement
85
273
  requirements:
86
274
  - - ">="
87
275
  - !ruby/object:Gem::Version
88
- version: '0'
276
+ version: 2.4.0
89
277
  required_rubygems_version: !ruby/object:Gem::Requirement
90
278
  requirements:
91
279
  - - ">="
92
280
  - !ruby/object:Gem::Version
93
- version: 1.3.6
281
+ version: '0'
94
282
  requirements: []
95
- rubygems_version: 3.0.0
96
- signing_key:
283
+ rubygems_version: 3.6.9
97
284
  specification_version: 4
98
285
  summary: OpenID strategy for OmniAuth.
99
- test_files:
100
- - spec/omniauth/strategies/open_id_spec.rb
101
- - spec/spec_helper.rb
286
+ test_files: []
metadata.gz.sig ADDED
Binary file
data/.gemtest DELETED
File without changes
data/.gitignore DELETED
@@ -1,18 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- /pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
-
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --format progress
data/.travis.yml DELETED
@@ -1,23 +0,0 @@
1
- bundler_args: --without development
2
- before_install:
3
- - gem update --system
4
- - gem update bundler
5
- cache: bundler
6
- env:
7
- global:
8
- - JRUBY_OPTS="$JRUBY_OPTS --debug"
9
- language: ruby
10
- rvm:
11
- - jruby-9.2.14.0
12
- - 2.4.10
13
- - 2.5.8
14
- - 2.6.6
15
- - 2.7.2
16
- - jruby-head
17
- - ruby-head
18
- matrix:
19
- allow_failures:
20
- - rvm: jruby-head
21
- - rvm: ruby-head
22
- fast_finish: true
23
- sudo: false
data/.yardopts DELETED
@@ -1,4 +0,0 @@
1
- --markup markdown
2
- --markup-provider maruku
3
- -
4
- LICENSE
data/Gemfile DELETED
@@ -1,23 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- gem 'rake', '~> 12.0'
4
-
5
- platforms :jruby do
6
- gem 'jruby-openssl', '~> 0.9'
7
- end
8
-
9
- gem 'ruby-openid', '2.1.8', :git => 'git://github.com/mbleigh/ruby-openid.git'
10
-
11
- gemspec
12
-
13
- group :development, :test do
14
- gem 'rack-test'
15
- gem 'rspec', '>= 3.0'
16
- gem 'simplecov', '>= 0.9'
17
- gem 'webmock', '~> 3.0'
18
- gem 'yard', '>= 0.9.11'
19
- end
20
-
21
- group :example do
22
- gem 'sinatra'
23
- end