-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "khenshin" | ||
s.version = "1.755" | ||
s.summary = "khenshin es una biblioteca que convierte sitios web en APIs read-write." | ||
s.description = <<-DESC | ||
khenshin es una biblioteca desarrollada por khipu.com, se utiliza para mejorar la experiencia de pago de todos los medios de pago soportados en khipu.com y para otros procesos originalmente Web. | ||
DESC | ||
s.homepage = "https://khipu.com" | ||
s.license = { | ||
:type => 'Copyright', | ||
:text => <<-LICENSE | ||
Copyright 2020 khipu SpA. All rights reserved. | ||
LICENSE | ||
} | ||
s.author = { "Khipu SpA" => "support@khipu.com" } | ||
s.platform = :ios | ||
s.source = { :git => "https://github.com/khipu/khenshin-pod.git", :tag => "#{s.version}" } | ||
s.ios.deployment_target = '11.0' | ||
s.vendored_frameworks = 'Products/khenshin.framework' | ||
s.resource = "Products/khenshin.bundle" | ||
s.library = "xml2" | ||
s.requires_arc = true | ||
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/khenshin"', | ||
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/khenshin"' } | ||
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
s.dependency "AFNetworking", "4.0.1" | ||
s.dependency "JSONModel", "1.7.0" | ||
s.dependency "PPTopMostController", "0.0.1" | ||
s.dependency "RaptureXML", "1.0.1" | ||
s.dependency "TTTAttributedLabel", "2.0.0" | ||
s.dependency "ActionSheetPicker-3.0", "2.7.1" | ||
s.dependency "BEMCheckBox", "1.4.1" | ||
s.dependency "FMDB", "2.7.5" | ||
s.dependency "IQKeyboardManager", "6.5.6" | ||
end |