-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBraspagVerifyCard.podspec
28 lines (21 loc) · 1.29 KB
/
BraspagVerifyCard.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
Pod::Spec.new do |spec|
spec.name = "BraspagVerifyCard"
spec.version = "0.0.5"
spec.summary = "Biblioteca de validação de cartões de crédito"
spec.description = <<-DESC
Biblioteca Braspag de validação de cartões de crédito.
DESC
spec.homepage = "https://github.com/Braspag/verify-card-ios"
spec.license = "MIT"
spec.author = { "Jeferson F. Nazario" => "[email protected]" }
spec.social_media_url = "https://twitter.com/jefnazario"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "9.0"
spec.source = { :git => "https://github.com/Braspag/verify-card-ios.git", :tag => "#{spec.version}" }
spec.swift_version = "5.0"
spec.ios.deployment_target = '9.0'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "BraspagVerifyCard/BraspagVerifyCard/**/*.{h,m,swift,framework}"
spec.dependency 'BraspagOAuth'
spec.exclude_files = "Example/**/*.*"
end