1. 程式人生 > >ios Mac 利用SVN進行cocoapod私有庫的使用

ios Mac 利用SVN進行cocoapod私有庫的使用

1. 首先在svn上面建立一個資料夾

舉例來說,名字為 FSLBootPageVC

同時在該目錄下建立 trunk 資料夾

2. 在trunk下面建立檔案 FSLBootPageVC.podspec 和資料夾 FSLBootPageVC

該目錄的FSLBootPageVC下面是實際要用的檔案

 

FSLBootPageVC.podspec的配置如下:

Pod::Spec.new do |s|

  s.name         = "FSLBootPageVC"
  s.version      = "1.0.0"
  s.summary      
= "啟動頁" s.homepage = "http://www.xxx.com/" s.license = "MIT" s.author = { "xxx" => "[email protected]" } s.source = { :git => "svn://xxxx/FSLBootPageVC", :tag => "#{s.version}" } s.source_files = "FSLBootPageVC/**/*" s.platform = :ios, "9.0" s.frameworks
= 'UIKit' s.frameworks = 'Foundation' end

 

3 svn建立tag 

以smartsvn為例 選中trunk目錄,選擇選單中的tag+branch輸入版本號1.0.0