omniauth-ldap 2.0.0 → 2.3.1
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 -5
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +202 -0
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +134 -0
- data/CONTRIBUTING.md +213 -0
- data/FUNDING.md +66 -0
- data/LICENSE.txt +23 -0
- data/README.md +813 -67
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +21 -0
- data/lib/omniauth/strategies/ldap.rb +159 -53
- data/lib/omniauth-ldap/adaptor.rb +162 -54
- data/lib/omniauth-ldap/version.rb +4 -1
- data/lib/omniauth-ldap.rb +6 -1
- data/sig/omniauth/ldap/adaptor.rbs +54 -0
- data/sig/omniauth/ldap/version.rbs +11 -0
- data/sig/omniauth/strategies/ldap.rbs +32 -0
- data/sig/omniauth-ldap.rbs +5 -0
- data/sig/rbs/net-ldap.rbs +19 -0
- data/sig/rbs/net-ntlm.rbs +16 -0
- data/sig/rbs/sasl.rbs +12 -0
- data.tar.gz.sig +0 -0
- metadata +332 -47
- metadata.gz.sig +0 -0
- data/.gitignore +0 -3
- data/.rspec +0 -1
- data/Gemfile +0 -11
- data/Guardfile +0 -11
- data/Rakefile +0 -9
- data/omniauth-ldap.gemspec +0 -26
- data/spec/omniauth/strategies/ldap_spec.rb +0 -200
- data/spec/omniauth-ldap/adaptor_spec.rb +0 -86
- data/spec/spec_helper.rb +0 -14
data/lib/omniauth-ldap.rb
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
module OmniAuth
|
|
2
|
+
module LDAP
|
|
3
|
+
class Adaptor
|
|
4
|
+
class LdapError < ::StandardError
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
class ConfigurationError < ::StandardError
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
class AuthenticationError < ::StandardError
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class ConnectionError < ::StandardError
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
VALID_ADAPTER_CONFIGURATION_KEYS: Array[Symbol]
|
|
17
|
+
MUST_HAVE_KEYS: Array[untyped]
|
|
18
|
+
METHOD: Hash[Symbol, Symbol?]
|
|
19
|
+
|
|
20
|
+
attr_accessor bind_dn: String?
|
|
21
|
+
attr_accessor password: String?
|
|
22
|
+
|
|
23
|
+
# Net::LDAP is provided by the net-ldap gem; we reference it here for clarity.
|
|
24
|
+
attr_reader connection: Net::LDAP
|
|
25
|
+
attr_reader uid: String?
|
|
26
|
+
attr_reader base: String?
|
|
27
|
+
# auth is the hash passed to Net::LDAP#auth or similar
|
|
28
|
+
attr_reader auth: Hash[Symbol, untyped]
|
|
29
|
+
# filter is an LDAP filter string when configured
|
|
30
|
+
attr_reader filter: String?
|
|
31
|
+
|
|
32
|
+
# Validate that required keys exist in the configuration
|
|
33
|
+
def self.validate: (?Hash[Symbol, untyped]) -> void
|
|
34
|
+
def initialize: (?Hash[Symbol, untyped]) -> void
|
|
35
|
+
|
|
36
|
+
# Perform a search and optionally bind; returns the matched entry or false
|
|
37
|
+
def bind_as: (?Hash[Symbol, untyped]) -> (Net::LDAP::Entry? | false)
|
|
38
|
+
|
|
39
|
+
private
|
|
40
|
+
|
|
41
|
+
# Returns a Net::LDAP encryption symbol (e.g. :simple_tls, :start_tls) or nil
|
|
42
|
+
def ensure_method: (untyped) -> Symbol?
|
|
43
|
+
|
|
44
|
+
# Returns an array of SASL auth hashes
|
|
45
|
+
def sasl_auths: (?Hash[Symbol, untyped]) -> Array[Hash[Symbol, untyped]]
|
|
46
|
+
|
|
47
|
+
# Returns initial credential (string) and a proc that accepts a challenge and returns the response
|
|
48
|
+
# Use Array[untyped] here to avoid tuple syntax issues in some linters; the runtime value
|
|
49
|
+
# is commonly a two-element array [initial_credential, proc].
|
|
50
|
+
def sasl_bind_setup_digest_md5: (?Hash[Symbol, untyped]) -> Array[untyped]
|
|
51
|
+
def sasl_bind_setup_gss_spnego: (?Hash[Symbol, untyped]) -> Array[untyped]
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
module OmniAuth
|
|
2
|
+
module Strategies
|
|
3
|
+
class LDAP
|
|
4
|
+
OMNIAUTH_GTE_V2: bool
|
|
5
|
+
|
|
6
|
+
# CONFIG is a read-only mapping of string keys to mapping definitions
|
|
7
|
+
CONFIG: Hash[String, untyped]
|
|
8
|
+
|
|
9
|
+
# The request_phase either returns a Rack-compatible response or the form response.
|
|
10
|
+
def request_phase: () -> (Rack::Response | Array[untyped] | String)
|
|
11
|
+
|
|
12
|
+
# The callback_phase may call super (untyped) or return a failure symbol
|
|
13
|
+
def callback_phase: () -> untyped
|
|
14
|
+
|
|
15
|
+
# Accepts an adaptor and returns a Net::LDAP::Filter or similar
|
|
16
|
+
# Optional second argument allows overriding the username (used for header-based SSO)
|
|
17
|
+
def filter: (OmniAuth::LDAP::Adaptor) -> Net::LDAP::Filter
|
|
18
|
+
| (OmniAuth::LDAP::Adaptor, String?) -> Net::LDAP::Filter
|
|
19
|
+
|
|
20
|
+
# Map a user object (Net::LDAP::Entry-like) into a Hash for the auth info
|
|
21
|
+
def self.map_user: (Hash[String, untyped], untyped) -> Hash[String, untyped]
|
|
22
|
+
|
|
23
|
+
def missing_credentials?: () -> bool
|
|
24
|
+
|
|
25
|
+
# Extract username from a trusted header when enabled
|
|
26
|
+
def header_username: () -> (String | nil)
|
|
27
|
+
|
|
28
|
+
# Perform a directory lookup for a given username; returns an Entry or nil
|
|
29
|
+
def directory_lookup: (OmniAuth::LDAP::Adaptor, String) -> untyped
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Minimal stubs for net-ldap types used by the gem
|
|
2
|
+
module Net
|
|
3
|
+
class LDAP
|
|
4
|
+
def initialize: (Hash[Symbol, untyped]) -> void
|
|
5
|
+
def open: () { (self) -> untyped } -> untyped
|
|
6
|
+
def search: (?Hash[Symbol, untyped]) -> Array[Net::LDAP::Entry]
|
|
7
|
+
def bind: (?Hash[Symbol, untyped]) -> bool
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
class LDAP::Entry
|
|
11
|
+
def dn: () -> String
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class LDAP::Filter
|
|
15
|
+
def self.construct: (String) -> Net::LDAP::Filter
|
|
16
|
+
def self.eq: (String, String) -> Net::LDAP::Filter
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Minimal stubs for net-ntlm types used by the gem
|
|
2
|
+
module Net
|
|
3
|
+
module NTLM
|
|
4
|
+
class Message
|
|
5
|
+
def self.parse: (untyped) -> Net::NTLM::Message
|
|
6
|
+
def response: (?Hash[Symbol, untyped], ?Hash[Symbol, untyped]) -> Net::NTLM::Message
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
class Message::Type1
|
|
10
|
+
def serialize: () -> String
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def self.encode_utf16le: (String) -> String
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
data/sig/rbs/sasl.rbs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Minimal stubs for SASL bindings used in tests
|
|
2
|
+
module SASL
|
|
3
|
+
class Preferences
|
|
4
|
+
def initialize: (?Hash[Symbol, untyped]) -> void
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
class SASL
|
|
8
|
+
def initialize: (String, SASL::Preferences) -> void
|
|
9
|
+
def receive: (String, untyped) -> [untyped, untyped]
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
data.tar.gz.sig
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,58 +1,124 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-ldap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
+
- Peter Boling
|
|
7
8
|
- Ping Yu
|
|
8
9
|
- Tom Milewski
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
bindir: exe
|
|
11
|
+
cert_chain:
|
|
12
|
+
- |
|
|
13
|
+
-----BEGIN CERTIFICATE-----
|
|
14
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
15
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
16
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
17
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
18
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
19
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
20
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
21
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
22
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
23
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
24
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
25
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
26
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
27
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
28
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
29
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
30
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
31
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
32
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
33
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
34
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
35
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
36
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
37
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
38
|
+
L9nRqA==
|
|
39
|
+
-----END CERTIFICATE-----
|
|
40
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
41
|
dependencies:
|
|
14
42
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
name:
|
|
43
|
+
name: net-ldap
|
|
16
44
|
requirement: !ruby/object:Gem::Requirement
|
|
17
45
|
requirements:
|
|
18
46
|
- - "~>"
|
|
19
47
|
- !ruby/object:Gem::Version
|
|
20
|
-
version:
|
|
48
|
+
version: '0.16'
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '1'
|
|
21
52
|
type: :runtime
|
|
22
53
|
prerelease: false
|
|
23
54
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
55
|
requirements:
|
|
25
56
|
- - "~>"
|
|
26
57
|
- !ruby/object:Gem::Version
|
|
27
|
-
version:
|
|
58
|
+
version: '0.16'
|
|
59
|
+
- - "<"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1'
|
|
28
62
|
- !ruby/object:Gem::Dependency
|
|
29
|
-
name:
|
|
63
|
+
name: omniauth
|
|
30
64
|
requirement: !ruby/object:Gem::Requirement
|
|
31
65
|
requirements:
|
|
32
|
-
- - "
|
|
66
|
+
- - ">="
|
|
33
67
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '
|
|
68
|
+
version: '1'
|
|
69
|
+
- - "<"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '3'
|
|
35
72
|
type: :runtime
|
|
36
73
|
prerelease: false
|
|
37
74
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
75
|
requirements:
|
|
39
|
-
- - "
|
|
76
|
+
- - ">="
|
|
40
77
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: '
|
|
78
|
+
version: '1'
|
|
79
|
+
- - "<"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '3'
|
|
42
82
|
- !ruby/object:Gem::Dependency
|
|
43
83
|
name: pyu-ruby-sasl
|
|
44
84
|
requirement: !ruby/object:Gem::Requirement
|
|
45
85
|
requirements:
|
|
46
|
-
- - "
|
|
86
|
+
- - ">="
|
|
47
87
|
- !ruby/object:Gem::Version
|
|
48
88
|
version: 0.0.3.3
|
|
89
|
+
- - "<"
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: '0.1'
|
|
49
92
|
type: :runtime
|
|
50
93
|
prerelease: false
|
|
51
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
95
|
requirements:
|
|
53
|
-
- - "
|
|
96
|
+
- - ">="
|
|
54
97
|
- !ruby/object:Gem::Version
|
|
55
98
|
version: 0.0.3.3
|
|
99
|
+
- - "<"
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '0.1'
|
|
102
|
+
- !ruby/object:Gem::Dependency
|
|
103
|
+
name: rack
|
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '1'
|
|
109
|
+
- - "<"
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '4'
|
|
112
|
+
type: :runtime
|
|
113
|
+
prerelease: false
|
|
114
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
115
|
+
requirements:
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: '1'
|
|
119
|
+
- - "<"
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '4'
|
|
56
122
|
- !ruby/object:Gem::Dependency
|
|
57
123
|
name: rubyntlm
|
|
58
124
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,6 +126,9 @@ dependencies:
|
|
|
60
126
|
- - "~>"
|
|
61
127
|
- !ruby/object:Gem::Version
|
|
62
128
|
version: 0.6.2
|
|
129
|
+
- - "<"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '1'
|
|
63
132
|
type: :runtime
|
|
64
133
|
prerelease: false
|
|
65
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -67,8 +136,107 @@ dependencies:
|
|
|
67
136
|
- - "~>"
|
|
68
137
|
- !ruby/object:Gem::Version
|
|
69
138
|
version: 0.6.2
|
|
139
|
+
- - "<"
|
|
140
|
+
- !ruby/object:Gem::Version
|
|
141
|
+
version: '1'
|
|
70
142
|
- !ruby/object:Gem::Dependency
|
|
71
|
-
name:
|
|
143
|
+
name: version_gem
|
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
|
145
|
+
requirements:
|
|
146
|
+
- - "~>"
|
|
147
|
+
- !ruby/object:Gem::Version
|
|
148
|
+
version: '1.1'
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: 1.1.9
|
|
152
|
+
type: :runtime
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '1.1'
|
|
159
|
+
- - ">="
|
|
160
|
+
- !ruby/object:Gem::Version
|
|
161
|
+
version: 1.1.9
|
|
162
|
+
- !ruby/object:Gem::Dependency
|
|
163
|
+
name: roda
|
|
164
|
+
requirement: !ruby/object:Gem::Requirement
|
|
165
|
+
requirements:
|
|
166
|
+
- - "~>"
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: '3.97'
|
|
169
|
+
type: :development
|
|
170
|
+
prerelease: false
|
|
171
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
172
|
+
requirements:
|
|
173
|
+
- - "~>"
|
|
174
|
+
- !ruby/object:Gem::Version
|
|
175
|
+
version: '3.97'
|
|
176
|
+
- !ruby/object:Gem::Dependency
|
|
177
|
+
name: kettle-dev
|
|
178
|
+
requirement: !ruby/object:Gem::Requirement
|
|
179
|
+
requirements:
|
|
180
|
+
- - "~>"
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
version: '1.1'
|
|
183
|
+
type: :development
|
|
184
|
+
prerelease: false
|
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
186
|
+
requirements:
|
|
187
|
+
- - "~>"
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: '1.1'
|
|
190
|
+
- !ruby/object:Gem::Dependency
|
|
191
|
+
name: bundler-audit
|
|
192
|
+
requirement: !ruby/object:Gem::Requirement
|
|
193
|
+
requirements:
|
|
194
|
+
- - "~>"
|
|
195
|
+
- !ruby/object:Gem::Version
|
|
196
|
+
version: 0.9.2
|
|
197
|
+
type: :development
|
|
198
|
+
prerelease: false
|
|
199
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
200
|
+
requirements:
|
|
201
|
+
- - "~>"
|
|
202
|
+
- !ruby/object:Gem::Version
|
|
203
|
+
version: 0.9.2
|
|
204
|
+
- !ruby/object:Gem::Dependency
|
|
205
|
+
name: rake
|
|
206
|
+
requirement: !ruby/object:Gem::Requirement
|
|
207
|
+
requirements:
|
|
208
|
+
- - "~>"
|
|
209
|
+
- !ruby/object:Gem::Version
|
|
210
|
+
version: '13.0'
|
|
211
|
+
type: :development
|
|
212
|
+
prerelease: false
|
|
213
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
214
|
+
requirements:
|
|
215
|
+
- - "~>"
|
|
216
|
+
- !ruby/object:Gem::Version
|
|
217
|
+
version: '13.0'
|
|
218
|
+
- !ruby/object:Gem::Dependency
|
|
219
|
+
name: require_bench
|
|
220
|
+
requirement: !ruby/object:Gem::Requirement
|
|
221
|
+
requirements:
|
|
222
|
+
- - "~>"
|
|
223
|
+
- !ruby/object:Gem::Version
|
|
224
|
+
version: '1.0'
|
|
225
|
+
- - ">="
|
|
226
|
+
- !ruby/object:Gem::Version
|
|
227
|
+
version: 1.0.4
|
|
228
|
+
type: :development
|
|
229
|
+
prerelease: false
|
|
230
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
231
|
+
requirements:
|
|
232
|
+
- - "~>"
|
|
233
|
+
- !ruby/object:Gem::Version
|
|
234
|
+
version: '1.0'
|
|
235
|
+
- - ">="
|
|
236
|
+
- !ruby/object:Gem::Version
|
|
237
|
+
version: 1.0.4
|
|
238
|
+
- !ruby/object:Gem::Dependency
|
|
239
|
+
name: appraisal2
|
|
72
240
|
requirement: !ruby/object:Gem::Requirement
|
|
73
241
|
requirements:
|
|
74
242
|
- - "~>"
|
|
@@ -82,80 +250,197 @@ dependencies:
|
|
|
82
250
|
- !ruby/object:Gem::Version
|
|
83
251
|
version: '3.0'
|
|
84
252
|
- !ruby/object:Gem::Dependency
|
|
85
|
-
name:
|
|
253
|
+
name: kettle-test
|
|
86
254
|
requirement: !ruby/object:Gem::Requirement
|
|
87
255
|
requirements:
|
|
256
|
+
- - "~>"
|
|
257
|
+
- !ruby/object:Gem::Version
|
|
258
|
+
version: '1.0'
|
|
88
259
|
- - ">="
|
|
89
260
|
- !ruby/object:Gem::Version
|
|
90
|
-
version:
|
|
261
|
+
version: 1.0.6
|
|
91
262
|
type: :development
|
|
92
263
|
prerelease: false
|
|
93
264
|
version_requirements: !ruby/object:Gem::Requirement
|
|
94
265
|
requirements:
|
|
266
|
+
- - "~>"
|
|
267
|
+
- !ruby/object:Gem::Version
|
|
268
|
+
version: '1.0'
|
|
95
269
|
- - ">="
|
|
96
270
|
- !ruby/object:Gem::Version
|
|
97
|
-
version:
|
|
271
|
+
version: 1.0.6
|
|
98
272
|
- !ruby/object:Gem::Dependency
|
|
99
273
|
name: rack-test
|
|
100
274
|
requirement: !ruby/object:Gem::Requirement
|
|
101
275
|
requirements:
|
|
276
|
+
- - "~>"
|
|
277
|
+
- !ruby/object:Gem::Version
|
|
278
|
+
version: '2.2'
|
|
279
|
+
type: :development
|
|
280
|
+
prerelease: false
|
|
281
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
282
|
+
requirements:
|
|
283
|
+
- - "~>"
|
|
284
|
+
- !ruby/object:Gem::Version
|
|
285
|
+
version: '2.2'
|
|
286
|
+
- !ruby/object:Gem::Dependency
|
|
287
|
+
name: ruby-progressbar
|
|
288
|
+
requirement: !ruby/object:Gem::Requirement
|
|
289
|
+
requirements:
|
|
290
|
+
- - "~>"
|
|
291
|
+
- !ruby/object:Gem::Version
|
|
292
|
+
version: '1.13'
|
|
293
|
+
type: :development
|
|
294
|
+
prerelease: false
|
|
295
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
296
|
+
requirements:
|
|
297
|
+
- - "~>"
|
|
298
|
+
- !ruby/object:Gem::Version
|
|
299
|
+
version: '1.13'
|
|
300
|
+
- !ruby/object:Gem::Dependency
|
|
301
|
+
name: stone_checksums
|
|
302
|
+
requirement: !ruby/object:Gem::Requirement
|
|
303
|
+
requirements:
|
|
304
|
+
- - "~>"
|
|
305
|
+
- !ruby/object:Gem::Version
|
|
306
|
+
version: '1.0'
|
|
102
307
|
- - ">="
|
|
103
308
|
- !ruby/object:Gem::Version
|
|
104
|
-
version:
|
|
309
|
+
version: 1.0.2
|
|
105
310
|
type: :development
|
|
106
311
|
prerelease: false
|
|
107
312
|
version_requirements: !ruby/object:Gem::Requirement
|
|
108
313
|
requirements:
|
|
314
|
+
- - "~>"
|
|
315
|
+
- !ruby/object:Gem::Version
|
|
316
|
+
version: '1.0'
|
|
317
|
+
- - ">="
|
|
318
|
+
- !ruby/object:Gem::Version
|
|
319
|
+
version: 1.0.2
|
|
320
|
+
- !ruby/object:Gem::Dependency
|
|
321
|
+
name: gitmoji-regex
|
|
322
|
+
requirement: !ruby/object:Gem::Requirement
|
|
323
|
+
requirements:
|
|
324
|
+
- - "~>"
|
|
325
|
+
- !ruby/object:Gem::Version
|
|
326
|
+
version: '1.0'
|
|
109
327
|
- - ">="
|
|
110
328
|
- !ruby/object:Gem::Version
|
|
111
|
-
version:
|
|
112
|
-
|
|
329
|
+
version: 1.0.3
|
|
330
|
+
type: :development
|
|
331
|
+
prerelease: false
|
|
332
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
333
|
+
requirements:
|
|
334
|
+
- - "~>"
|
|
335
|
+
- !ruby/object:Gem::Version
|
|
336
|
+
version: '1.0'
|
|
337
|
+
- - ">="
|
|
338
|
+
- !ruby/object:Gem::Version
|
|
339
|
+
version: 1.0.3
|
|
340
|
+
- !ruby/object:Gem::Dependency
|
|
341
|
+
name: vcr
|
|
342
|
+
requirement: !ruby/object:Gem::Requirement
|
|
343
|
+
requirements:
|
|
344
|
+
- - ">="
|
|
345
|
+
- !ruby/object:Gem::Version
|
|
346
|
+
version: '4'
|
|
347
|
+
type: :development
|
|
348
|
+
prerelease: false
|
|
349
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
350
|
+
requirements:
|
|
351
|
+
- - ">="
|
|
352
|
+
- !ruby/object:Gem::Version
|
|
353
|
+
version: '4'
|
|
354
|
+
- !ruby/object:Gem::Dependency
|
|
355
|
+
name: webmock
|
|
356
|
+
requirement: !ruby/object:Gem::Requirement
|
|
357
|
+
requirements:
|
|
358
|
+
- - ">="
|
|
359
|
+
- !ruby/object:Gem::Version
|
|
360
|
+
version: '3'
|
|
361
|
+
type: :development
|
|
362
|
+
prerelease: false
|
|
363
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
364
|
+
requirements:
|
|
365
|
+
- - ">="
|
|
366
|
+
- !ruby/object:Gem::Version
|
|
367
|
+
version: '3'
|
|
368
|
+
description: "\U0001F4C1 LDAP strategy for OmniAuth."
|
|
113
369
|
email:
|
|
114
|
-
-
|
|
115
|
-
- tmilewski@gmail.com
|
|
370
|
+
- floss@galtzo.com
|
|
116
371
|
executables: []
|
|
117
372
|
extensions: []
|
|
118
|
-
extra_rdoc_files:
|
|
373
|
+
extra_rdoc_files:
|
|
374
|
+
- CHANGELOG.md
|
|
375
|
+
- CITATION.cff
|
|
376
|
+
- CODE_OF_CONDUCT.md
|
|
377
|
+
- CONTRIBUTING.md
|
|
378
|
+
- FUNDING.md
|
|
379
|
+
- LICENSE.txt
|
|
380
|
+
- README.md
|
|
381
|
+
- REEK
|
|
382
|
+
- RUBOCOP.md
|
|
383
|
+
- SECURITY.md
|
|
119
384
|
files:
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
385
|
+
- CHANGELOG.md
|
|
386
|
+
- CITATION.cff
|
|
387
|
+
- CODE_OF_CONDUCT.md
|
|
388
|
+
- CONTRIBUTING.md
|
|
389
|
+
- FUNDING.md
|
|
390
|
+
- LICENSE.txt
|
|
124
391
|
- README.md
|
|
125
|
-
-
|
|
392
|
+
- REEK
|
|
393
|
+
- RUBOCOP.md
|
|
394
|
+
- SECURITY.md
|
|
126
395
|
- lib/omniauth-ldap.rb
|
|
127
396
|
- lib/omniauth-ldap/adaptor.rb
|
|
128
397
|
- lib/omniauth-ldap/version.rb
|
|
129
398
|
- lib/omniauth/strategies/ldap.rb
|
|
130
|
-
- omniauth-ldap.
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
|
|
399
|
+
- sig/omniauth-ldap.rbs
|
|
400
|
+
- sig/omniauth/ldap/adaptor.rbs
|
|
401
|
+
- sig/omniauth/ldap/version.rbs
|
|
402
|
+
- sig/omniauth/strategies/ldap.rbs
|
|
403
|
+
- sig/rbs/net-ldap.rbs
|
|
404
|
+
- sig/rbs/net-ntlm.rbs
|
|
405
|
+
- sig/rbs/sasl.rbs
|
|
406
|
+
homepage: https://github.com/omniauth/omniauth-ldap
|
|
135
407
|
licenses:
|
|
136
408
|
- MIT
|
|
137
|
-
metadata:
|
|
138
|
-
|
|
139
|
-
|
|
409
|
+
metadata:
|
|
410
|
+
homepage_uri: https://omniauth-ldap.galtzo.com/
|
|
411
|
+
source_code_uri: https://github.com/omniauth/omniauth-ldap/tree/v2.3.1
|
|
412
|
+
changelog_uri: https://github.com/omniauth/omniauth-ldap/blob/v2.3.1/CHANGELOG.md
|
|
413
|
+
bug_tracker_uri: https://github.com/omniauth/omniauth-ldap/issues
|
|
414
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-ldap/2.3.1
|
|
415
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
416
|
+
wiki_uri: https://github.com/omniauth/omniauth-ldap/wiki
|
|
417
|
+
news_uri: https://www.railsbling.com/tags/omniauth-ldap
|
|
418
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
419
|
+
rubygems_mfa_required: 'true'
|
|
420
|
+
rdoc_options:
|
|
421
|
+
- "--title"
|
|
422
|
+
- "omniauth-ldap - \U0001F4C1 LDAP strategy for OmniAuth."
|
|
423
|
+
- "--main"
|
|
424
|
+
- README.md
|
|
425
|
+
- "--exclude"
|
|
426
|
+
- "^sig/"
|
|
427
|
+
- "--line-numbers"
|
|
428
|
+
- "--inline-source"
|
|
429
|
+
- "--quiet"
|
|
140
430
|
require_paths:
|
|
141
431
|
- lib
|
|
142
432
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
143
433
|
requirements:
|
|
144
434
|
- - ">="
|
|
145
435
|
- !ruby/object:Gem::Version
|
|
146
|
-
version: '0'
|
|
436
|
+
version: '2.0'
|
|
147
437
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
438
|
requirements:
|
|
149
439
|
- - ">="
|
|
150
440
|
- !ruby/object:Gem::Version
|
|
151
441
|
version: '0'
|
|
152
442
|
requirements: []
|
|
153
|
-
|
|
154
|
-
rubygems_version: 2.6.11
|
|
155
|
-
signing_key:
|
|
443
|
+
rubygems_version: 3.7.2
|
|
156
444
|
specification_version: 4
|
|
157
|
-
summary:
|
|
158
|
-
test_files:
|
|
159
|
-
- spec/omniauth-ldap/adaptor_spec.rb
|
|
160
|
-
- spec/omniauth/strategies/ldap_spec.rb
|
|
161
|
-
- spec/spec_helper.rb
|
|
445
|
+
summary: "\U0001F4C1 LDAP strategy for OmniAuth."
|
|
446
|
+
test_files: []
|
metadata.gz.sig
ADDED
|
Binary file
|
data/.gitignore
DELETED
data/.rspec
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
--colour
|
data/Gemfile
DELETED
data/Guardfile
DELETED