forked from OpenClemson/SwiftECP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftECP.podspec
More file actions
27 lines (22 loc) · 1.26 KB
/
SwiftECP.podspec
File metadata and controls
27 lines (22 loc) · 1.26 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
Pod::Spec.new do |s|
s.name = "SwiftECP"
s.version = "5.0.0"
s.summary = "SwiftECP is a simple Shibboleth ECP client for iOS."
s.description = <<-DESC
Need Shibboleth login on your iOS or macOS app but don't want to use a webview? Don't want to deal with XML or read a spec? Use SwiftECP to do the work for you! SwiftECP is a spec-conformant Shibboleth ECP client. Simply provide credentials and a Shibboleth-protected resource URL and SwiftECP will hand you a Shibboleth cookie to attach to further requests or inject into a webview.
DESC
s.homepage = "https://github.com/OpenClemson/SwiftECP"
s.license = 'Apache 2.0'
s.author = { "Tyler Thompson" => "tpthomp@clemson.edu",
"Tanner Stokes" => "tanners@clemson.edu" }
s.source = { :git => "https://github.com/OpenClemson/SwiftECP.git", :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.source_files = 'Pod/Source/**/*'
s.swift_version = '5.0'
s.dependency 'AEXML-CU', '~> 5.0.0'
s.dependency 'Alamofire', '~> 4.5'
s.dependency 'ReactiveSwift', '~> 6.0'
s.dependency 'XCGLogger', '~> 7.0'
end