-
Notifications
You must be signed in to change notification settings - Fork 26
/
Paystack.podspec
29 lines (25 loc) · 1.57 KB
/
Paystack.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
Pod::Spec.new do |s|
s.name = 'Paystack'
s.version = '3.0.17'
s.summary = 'Paystack is a web-based API helping African Businesses accept payments online.'
s.description = <<-DESC
Paystack makes it easy for African Businesses to accept Mastercard, Visa and Verve cards from anyone, anywhere in the world.
DESC
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://paystack.com'
s.authors = { 'Jubril Olambiwonnu' => 'jubril@paystack.com', 'Ibrahim Lawal' => 'ibrahim@paystack.com', 'Paystack' => 'support@paystack.com' }
s.source = { :git => 'https://github.com/paystackhq/paystack-ios.git', :tag => "v#{s.version}" }
s.ios.frameworks = 'Foundation', 'Security'
s.ios.weak_frameworks = 'PassKit', 'AddressBook'
s.requires_arc = true
s.default_subspecs = 'Core'
s.ios.deployment_target = '11.0'
s.swift_versions = '5.0'
s.subspec 'Core' do |ss|
ss.public_header_files = 'Paystack/PublicHeaders/*.h', 'Paystack/RSA/*.h'
ss.ios.public_header_files = 'Paystack/PublicHeaders/UI/*.h'
ss.source_files = 'Paystack/PublicHeaders/*.h', 'Paystack/RSA/*.{h,m}', 'Paystack/*.{h,m}'
ss.ios.source_files = 'Paystack/PublicHeaders/UI/*.h', 'Paystack/UI/*.{h,m}', 'Paystack/**/*.{swift}'
ss.resources = 'Paystack/Resources/**/*'
end
end