cocoapods-bb-PodAssistant

A description of cocoapods-bb-PodAssistant.

Installation

$ gem install cocoapods-bb-PodAssistant

stale使用

拉取稳定lock配置插件。利用版本比对进行更新配置实现对组件版本控制管理。

pod stable --help
  • 初始化本地lock文件
pod stable init
  • 同步lock文件
pod stable sync
  • pod install
pod stable install
  • pod update
pod stable update [组件名称] --sync

--sync选项可选,会自动同步远端标签,不带默认不更新远端版本 更多用法,参照:pod stable update --help

linkline使用

支持动态/静态库

  • Build the component and all child inherit dependencies with dynamic framework

    pod 'xxx', :linkages => :dynamic 
    
  • Build the component itself with a dynamic framework

    ```
    pod 'xxx', :linkage => :dynamic 
    ```
    
  • Build the component and all child inherit dependencies with static framework

    pod 'xxx', :linkages => :static 
    
  • Build the component itself with a static framework

    pod 'xxx', :linkage => :static 
    

可执行文件

  • Tools工具集使用
bb_tools --help
  • pp文件加密
match_encrypt  [password] [input_path] [output_path]
  • pp文件解密
match_decrypt  [password] [input_path] [output_path]