forked from EurekaCommunity/CreditCardRow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreditCardRow.podspec
More file actions
18 lines (18 loc) · 847 Bytes
/
CreditCardRow.podspec
File metadata and controls
18 lines (18 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "CreditCardRow"
s.version = "3.1.0"
s.summary = "An Eureka row that allows the user to input a credit card number with optional CVC and expiration date."
s.homepage = "https://github.com/EurekaCommunity/CreditCardRow"
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { "Xmartlabs SRL" => "swift@xmartlabs.com" }
s.source = { git: "https://github.com/EurekaCommunity/CreditCardRow.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/xmartlabs'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.ios.source_files = 'Sources/**/*.swift'
s.resource_bundles = {
'CreditCardRow' => ['Sources/CreditCardCell.xib']
}
s.ios.frameworks = 'UIKit', 'Foundation'
s.dependency 'Eureka', '~> 4.0'
end