Sha256: b47866d22b9ee71e9c6139dfcb995bcfd1c205e98063fe5a29a4c88ceadf2ca2
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
require 'cocoapods-bb-PodAssistant/config/source_manager' require 'cocoapods-bb-PodAssistant/config/cache_path' require 'cocoapods-bb-PodAssistant/helpers' require 'cocoapods-bb-PodAssistant/command/stable/init' require 'cocoapods-bb-PodAssistant/command/stable/install' require 'cocoapods-bb-PodAssistant/command/stable/update' require 'cocoapods-bb-PodAssistant/command/stable/sync' module Pod # class StableOptions # # define business specs,defalut is stable_specs # option :business_specs, "stable_specs" # # define custom lockSpecs tag # option :tag, "" # # define custom lockSpecs branch # option :branch, "" # end class Command class Stable < Command self.abstract_command = true self.summary = '拉取稳定Podfile.lock配置' self.description = <<-DESC 拉取稳定lock配置插件。利用版本比对进行更新配置实现对组件版本控制管理。 DESC self.default_subcommand = 'init' #-----------------------------------------------------------------------# extend Executable executable :git def validate! super banner! if @help end def run puts "[PodAssistant] `pod stable` 帮助文档请查看�".yellow # banner! end end end end
Version data entries
4 entries across 4 versions & 1 rubygems