-
Notifications
You must be signed in to change notification settings - Fork 12
/
OBPKit.podspec
21 lines (21 loc) · 1.05 KB
/
OBPKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "OBPKit"
s.version = "1.1.3"
s.summary = "Ease access to servers offering the Open Bank Project API."
s.description = "OBPKit is quick to integrate into your iOS app or OSX application, and makes authorisation of sessions and marshalling of resources through the Open Bank Project API simple and easy."
s.homepage = "https://github.com/OpenBankProject/OBPKit-iOSX"
s.license = "MIT"
s.authors = {
"Torsten Louland" => "[email protected]"
}
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/OpenBankProject/OBPKit-iOSX.git", :tag => s.version }
s.source_files = "OBPKit/**/*.{h,m}", "Framework", "GenerateKey"
s.public_header_files = "OBPKit/Connection/*.h", "OBPKit/Marshal/*.h", "OBPKit/Util/OBP*.h", "OBPKit/Util/NS*.h", "Framework/*.h"
s.preserve_paths = "Config/*.xcconfig"
s.requires_arc = true
s.dependency "STHTTPRequest", "~> 1.1.4"
s.dependency "OAuthCore", "~> 0.0.2"
s.dependency "UICKeyChainStore", "~> 2.1.1"
end