-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPromisePay.podspec
More file actions
26 lines (22 loc) · 869 Bytes
/
PromisePay.podspec
File metadata and controls
26 lines (22 loc) · 869 Bytes
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
Pod::Spec.new do |s|
s.name = "PromisePay"
s.version = "0.2.0"
s.summary = "PromisePay iOS SDK"
s.description = <<-DESC
The implementation of PromisePay Client SDK
DESC
s.homepage = "https://github.com/PromisePay/ios-sdk"
s.license = 'MIT'
s.author = { "KevinHakans" => "kevin.hakans.it@gmail.com" }
s.source = { :git => "https://github.com/PromisePay/ios-sdk.git", :tag => "v0.2.0" }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'PromisePay' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'Foundation'
s.dependency 'CardIO', '~> 5.3'
end