remove - git tag commands
¿Cómo instalar un pod desde una rama específica? (1)
La guía de podfile menciona la siguiente sintaxis:
Para usar una rama diferente del repositorio:
pod ''Alamofire'', :git => ''https://github.com/Alamofire/Alamofire.git'', :branch => ''dev''
^^^
(the space is important)
Entonces, en su caso, eso sería:
pod ''SQLite.swift'', :git => ''https://github.com/stephencelis/SQLite.swift.git'', :branch => ''swift3-mariotaku''
Estoy intentando agregar agregar un pod por cocoapods, y estoy usando swift 3, mientras que el pod ( SQlite.swift ).
Estoy tratando de usar no tiene un maestro de la última versión de swift, sin embargo, hay una branch para swift 3.
Entonces, ¿cómo debo configurar mi podfile para descargar la rama específica? ¿Es posible?
Aquí está mi podfile:
platform :ios, ''10.0''
target ''RedShirt'' do
use_frameworks!
# Pods for RedShirt
pod ''SQLite.swift'', :git => ''https://github.com/stephencelis/SQLite.swift.git''
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[''SWIFT_VERSION''] = ''3.0''
end
end
end