-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathCreditCardForm.podspec
23 lines (19 loc) · 962 Bytes
/
CreditCardForm.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "CreditCardForm"
s.version = "0.2.0"
s.summary = "CreditCardForm is iOS framework"
s.description = "CreditCardForm is iOS framework that allows developers to create the UI which replicates an actual Credit Card"
s.homepage = "https://github.com/CreditCardForm"
s.screenshots = 'https://camo.githubusercontent.com/e30bcc0537ff4aa4adae4f39ad664aeb2fd7db76/68747470733a2f2f646f746a70672e636f2f3862752e706e67'
s.license = { :type => "MIT" }
s.author = { "orazz" => "orazz.tm@gmail.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/orazz/CreditCardForm-iOS.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = "CreditCardForm/Classes/*.swift", "CreditCardForm/*.{h,m}"
s.resource_bundles = {
'CreditCardForm' => ['CreditCardForm/Images.xcassets']
}
s.frameworks = 'UIKit'
s.swift_versions = "4.2"
end