利用公司SVN伺服器使用CocoaPods管理自己的私有庫

小豬熊發表於2017-12-13

簡單的命令

gem install cocoapods-repo-svn 來安裝 repo-svn 外掛。

pod repo-svn add my-svn-repo http://svn-repo-url 新增你的私有 svn 專案倉庫

pod repo-svn update my-svn-repo 更新專案

pod repo-svn remove my-svn-repo 刪除專案
複製程式碼

第一步:建立 podspec

Pod::Spec.new do |s|
  s.name         = "xxx"
  s.version      = "1.0"
  s.summary      = "xxx"
  s.homepage     = "https://192.168.8.250/svn/xxx"
  s.license      = "MIT"
  s.author       = { "xxx" => "xxx@163.com" }
  s.platform     = :ios, "7.0"
  s.source       = { :svn => "https://192.168.8.250/svn/xxx", :tag => s.version}
  s.source_files = "xxx", "*.{h,m}"
  s.frameworks   = "UIKit"
  s.requires_arc = true
end
複製程式碼

第二步:將專案提交到svn並打上tags

3F27B04C-35B3-4C75-8E47-2A03CF7F59DB.png

第三步:安裝 repo-svn 外掛(如果已經安裝了可以跳過)

gem install cocoapods-repo-svn 來安裝 repo-svn 外掛。
複製程式碼

第四步:新增你的私有 svn 專案倉庫

pod repo-svn add xxx //https://192.168.8.250/svn/xxx/tags/1.0

第五步:使用你的私有pods

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, ‘8.0’

target 'xxx' do
pod 'xxx', :svn => "https://192.168.8.250/svn/xxx/tags/1.0"
end
複製程式碼

來自:http://www.piggybear.net/?p=702

相關文章