Sha256: 18707c5e07bc290bc4f83ac95bff24f5428facf525dea634546ab569bc7b0d23
Contents?: true
Size: 1.34 KB
Versions: 25
Compression:
Stored size: 1.34 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' require 'cocoapods-bb-PodAssistant/command/stable/push' 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 initialize(argv) super puts "cocoapods-bb-PodAssistant (#{CocoapodsBbPodassistant::VERSION})" end end end end
Version data entries
25 entries across 25 versions & 1 rubygems