2
特定のブランチからポッドをインストールするにはどうすればよいですか?
私はcocoapodsによってポッドを追加しようとしています、そしてポッド(SQlite.swift)の間にSwift 3を使用しています。 私が使用しようとしているのは、最新のSwiftバージョンのマスターがありませんが、Swift 3のブランチがあります。 では、特定のブランチをダウンロードするようにポッドファイルを設定するにはどうすればよいですか?出来ますか? これが私のポッドファイルです: 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