iOS之开发配置iOS 开发基础杂记

CocoaPods 私有化Podspec

2017-12-13  本文已影响69人  iOS_成才录

一、主要流程

二、傻瓜式教学

1、创建一个本地私有的Spec Repo:MGSpec,绑定托管到远程仓库
1. 打开命令行终端,输入如下命令:
 
pod repo add  MGSpec https://jennyCjp@bitbucket.org/jennyCjp/mgspecs.git

2.  ~/.cocoapods/repos目录下就可以看到 MGSpec
Snip20171213_5.png
2、创建远程仓库MGAPIClient,创建本地Pod的项目工程库,如:MGAPIClient ,利用命令行将本地项目托管到远程仓库MGAPIClient
import UIKit
public class APIClient: NSObject {
   public class func requestAPI(){
        print("APIClient  requestAPI 网络请求 !")
    }
}

Snip20171213_20.png Snip20171213_21.png
# 1. 终端进入MGAPIClient根目录下的Example目录中
cd /Users/asahanayuujuu/MGAPIClient/Example 

# 2. 执行pod update 后查看项目
pod update
Snip20171213_22.png Snip20171213_28.png
# 终端进入MGAPIClient根目录下
cd /Users/asahanayuujuu/MGAPIClient

# 添加,提交本地仓库,并推送到远程仓库MGAPIClient
git add .
git commit -s -m "初始化MGAPIClient库"
git remote add origin git@bitbucket.org:jennyCjp/mgapiclient.git
git push -u origin master

# podspec文件中获取Git版本控制的项目需要tag号,要打tag
 git tag -m '初始化 release' 0.1.0
 git push --tags   #推送tag到远程仓库
3、修改本地pod库MGAPIClient中的podspec文件,并验证可用性,验证通过后,将本地Pod库推送到远程
# 进入本地MGAPIClient根目录
cd /Users/asahanayuujuu/MGAPIClient
# 验证,
pod lib lint
# 如下则验证通过后,podspec就是一个符合CocoaPods规则的配置文件了。
 -> MGAPIClient (0.1.0)
MGAPIClient passed validation.

# 推送到远程MGAPIClient仓库

可能警告错误:

1、 验证podspec文件时

-> MGAPIClient (0.1.0)
    - WARN  | [iOS] swift_version: The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run: 
    `echo "2.3" > .swift-version`
 终端执行 echo 3.0 > .swift-version
 后执行验证  pod lib lint
4、podspec验证通过后,本地测试MGAPIClient项目中的MGAPIClient.podspec使用

Podfile原文件

use_frameworks!
target 'MGAPIClient_Tests' do  
 pod 'MGAPIClient', :path => '../'
end

修改成

use_frameworks!
target 'MGAPIClient_Tests' do
  # pod 'MGAPIClient', :path => '../'
  pod 'MGAPIClient', :podspec => '../MGAPIClient.podspec'
end
# 进入本地MGAPIClient根目录Example文件
cd /Users/asahanayuujuu/MGAPIClient/Example
# 执行更新
pod update

在之前pod update前与后,文件对比


更新前.png 更新后.png
5、向远程私有的Spec Repo中提交podspec
# 进入本地MGAPIClient根目录
cd /Users/asahanayuujuu/MGAPIClient
git add .
git commit -s -m "podspec文件测试修改"
git push origin master #提交到远程仓库
# 进入本地MGAPIClient根目录
cd /Users/asahanayuujuu/MGAPIClient

# podspec文件推送到私有远程spec仓库
# 注意:MGSpec:之前本地创建的spec名字, MGAPIClient.podspec: 创建本地pod项目中的podspec名字。
pod repo push MGSpec MGAPIClient.podspec 
Validating spec
 -> MGAPIClient (0.1.0)

Updating the `MGSpec' repo

Already up-to-date.

Adding the spec to the `MGSpec' repo

 - [Add] MGAPIClient (0.1.0)

Pushing the `MGSpec' repo
后.png
6、完毕,使用制作成功的私有库MGAPIClient
# 私有Spec Repo
source 'https://git.coding.net/kensla/DDSpecs.git' 
pod 'MyLib', '~> 0.1.0'
Snip20171213_38.png
上一篇下一篇

猜你喜欢

热点阅读