This repository was archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNoMAD-ADAuth.podspec
More file actions
37 lines (32 loc) · 1.42 KB
/
NoMAD-ADAuth.podspec
File metadata and controls
37 lines (32 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Be sure to run `pod spec lint NoMAD-ADAuth.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
Pod::Spec.new do |s|
s.name = "NoMAD-ADAuth"
s.version = "1.0.1"
s.summary = "NoMAD AD Authentication Framework"
s.description = <<-DESC
The NoMAD AD Authentication Framework allows you to present a username and password to the Framework
and have it get tickets for the user and then lookup the user's information in AD.
In addition the framework is:
- site aware
- able to change passwords
- able to use SSL for AD lookups
- can have the site forced or ignored
- is aware of network changes, and will mark sites to be re-discovered on changes
- perform recursive group lookups
DESC
s.homepage = "https://nomad.menu/"
s.license = { :type => "Orchard & Grove Everything but Commercial License", :file => "LICENSE" }
s.authors = { "Josh Wisenbaker" => "josh@orchardandgrove.com", "Joel Rennich" => "joel@orchardandgrove.com" }
s.platform = :osx, "10.10"
s.source = { :git => "https://gitlab.com/Mactroll/NoMAD-ADAuth", :tag => "#{s.version}" }
s.source_files = "NoMAD-ADAuth", "NoMAD-ADAuth/**/*.{h,m}"
s.exclude_files = "docs"
# s.public_header_files = "Classes/**/*.h"
# s.framework = "SomeFramework"
s.frameworks = "Security", "GSS", "Kerberos"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
end