pod ipc

pod ipc其实就是各种格式文件之间的互相转换工具。

1.1、pod ipc update-search-index

更新search_index.json文件,并打印出它的路径。

示例:

1.2、pod ipc spec <*.podspec>

把指定的.podspec文件转换成JSON格式,并打印到标准输出中。

示例:

pod ipc spec AFNetworkingLogger.podspec
pod ipc spec AFNetworkingLogger.podspec >> AFNetworkingLogger.json
1.3、pod ipc podfile <PodfilePath>

把指定的Podfile文件转换成YML格式,并打印到标准输出中。

示例:

pod ipc podfile ~/Desktop/iOSTest/Podfile
pod ipc podfile ~/Desktop/iOSTest/Podfile >> Podfile.yml
1.4、pod ipc podfile-json <PodfilePath>

把指定的Podfile文件转换成JSON格式,并打印到标准输出中。

示例:

pod ipc podfile ~/Desktop/iOSTest/Podfile
pod ipc podfile ~/Desktop/iOSTest/Podfile >> Podfile.json