-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayrails.podspec
33 lines (26 loc) · 1.29 KB
/
Payrails.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
#
# Be sure to run `pod spec lint Payrails.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "Payrails"
spec.version = "1.0.0"
spec.swift_version = "5.0"
spec.summary = "Payrails Checkout SDK for iOS - Seamless Payment Integration"
spec.description = "Payrails Checkout ensures seamless payment integration within iOS applications, providing developers with the means to create versatile payment solutions."
spec.homepage = "https://github.com/payrails/ios-sdk.git"
spec.license = "MIT Licence"
spec.author = { "Payrails" => "contact@payrails.com" }
spec.platform = :ios
spec.platform = :ios, "14.0"
spec.source = { :git => "https://github.com/payrails/ios-sdk.git", :tag => "#{spec.version}" }
spec.subspec 'Checkout' do |checkout|
checkout.source_files = "Payrails/Classes/Public/**/*.{swift}"
checkout.resources = "Payrails/Classes/Public/Assets/*.xcassets"
checkout.dependency 'PayPalCheckout'
checkout.dependency 'Skyflow'
end
end