-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCieloBinQuery.podspec
More file actions
32 lines (23 loc) · 1.47 KB
/
CieloBinQuery.podspec
File metadata and controls
32 lines (23 loc) · 1.47 KB
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
Pod::Spec.new do |spec|
spec.name = "CieloBinQuery"
spec.version = "0.0.4"
spec.summary = "Biblioteca de consulta de cartões de crédito"
spec.description = <<-DESC
Biblioteca Cielo/Braspag de consulta de cartões de crédito utilizando o bin.
DESC
spec.homepage = "https://github.com/DeveloperCielo/cielo-bin-query-ios"
spec.license = "MIT"
# spec.license = { :type => "MIT", :file => "FILE_LICENSE" }
spec.author = { "Jeferson F. Nazario" => "jefnazario@gmail.com" }
# Or just: spec.author = "Jeferson F. Nazario"
# spec.authors = { "Jeferson F. Nazario" => "jefnazario@gmail.com" }
spec.social_media_url = "https://twitter.com/jefnazario"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "9.0"
spec.source = { :git => "https://github.com/DeveloperCielo/cielo-bin-query-ios.git", :tag => "#{spec.version}" }
spec.swift_version = "5.0"
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "BinQuery/BinQuery/**/*.{h,m,swift,framework}"
spec.dependency 'CieloOAuth'
spec.exclude_files = "BinQuery/Example/**/*.*"
end