-
Notifications
You must be signed in to change notification settings - Fork 5
/
OBankingConnector.podspec
34 lines (26 loc) · 1.02 KB
/
OBankingConnector.podspec
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
Pod::Spec.new do |s|
s.name = 'OBankingConnector'
s.version = '0.1.0'
s.summary = 'OBanking PSD2 Bank API Connector'
s.description = <<-DESC
TODO
DESC
s.homepage = 'https://github.com/Ka0o0/obanking-psd2-connector-swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kai Takac' => '[email protected]' }
s.source = { :git => '[email protected]:Ka0o0/obanking-psd2-connector-swift.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.frameworks = 'Foundation'
s.dependency 'RxSwift', '~> 4.1'
s.default_subspec = 'Domain','Platform'
s.subspec 'Domain' do |ps|
ps.source_files = 'OBankingConnector/Domain/**/*.swift'
end
s.subspec 'Platform' do |ps|
ps.source_files = 'OBankingConnector/Platform/**/*.swift'
ps.resources = 'OBankingConnector/Platform/**/*.crt'
ps.dependency 'RxAlamofire', '~> 4.0'
end
end