Estoy tratando de agregar una vaina de cocoapods, y estoy usando swift 3, mientras que la vaina ( SQlite.swift ).
Estoy tratando de usar no tengo un maestro de la última versión de Swift, sin embargo, hay una rama 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
:tag => '1.0.0'