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
    

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