forked from checkout/frames-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Frames.podspec
26 lines (23 loc) · 939 Bytes
/
Frames.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
Pod::Spec.new do |s|
s.name = "Frames"
s.version = "4.3.7"
s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift"
s.description = <<-DESC
Checkout API Client and Payment Form Utilities in Swift.
This library contains methods to implement a payment form as well as UI elements.
DESC
s.homepage = "https://github.com/checkout/frames-ios"
s.swift_version = "5.0"
s.license = "MIT"
s.author = { "Checkout.com Integration" => "[email protected]" }
s.platform = :ios, "12.0"
s.source = { :git => "https://github.com/checkout/frames-ios.git", :tag => s.version }
s.source_files = 'Source/**/*.swift'
s.exclude_files = "Classes/Exclude"
s.resource_bundles = {
"Frames" => 'Source/Resources/**'
}
s.dependency 'PhoneNumberKit'
s.dependency 'CheckoutEventLoggerKit', '~> 1.2.4'
s.dependency 'Checkout', '4.3.7'
end