Sha256: cca5b2acc657e0f6e8ffea52cc9c0248716608925c9f9aeb6ace8f89ff784c11

Contents?: true

Size: 1.97 KB

Versions: 15

Compression:

Stored size: 1.97 KB

Contents

require 'cocoapods-bb-bin/command/bin/initHotKey'
require 'cocoapods-bb-bin/command/bin/init'
require 'cocoapods-bb-bin/command/bin/archive'
require 'cocoapods-bb-bin/command/bin/auto'
require 'cocoapods-bb-bin/command/bin/code'
require 'cocoapods-bb-bin/command/bin/update'
require 'cocoapods-bb-bin/command/bin/install'
require 'cocoapods-bb-bin/command/bin/imy'

require 'cocoapods-bb-bin/helpers'

module Pod
  class Command
    # This is an example of a cocoapods plugin adding a top-level subcommand
    # to the 'pod' command.
    #
    # You can also create subcommands of existing or new commands. Say you
    # wanted to add a subcommand to `list` to show newly deprecated pods,
    # (e.g. `pod list deprecated`), there are a few things that would need
    # to change.
    #
    # - move this file to `lib/pod/command/list/deprecated.rb` and update
    #   the class to exist in the the Pod::Command::List namespace
    # - change this class to extend from `List` instead of `Command`. This
    #   tells the plugin system that it is a subcommand of `list`.
    # - edit `lib/cocoapods_plugins.rb` to require this file
    #
    # @todo Create a PR to add your plugin to CocoaPods/cocoapods.org
    #       in the `plugins.json` file, once your plugin is released.
    #
    class Bin < Command
      include CBin::SourcesHelper
      include CBin::SpecFilesHelper

      self.abstract_command = true

      self.default_subcommand = 'open'
      self.summary = '组件二进制化插件.'
      self.description = <<-DESC
        组件二进制化插件。利用源码私有源与二进制私有源实现对组件依赖类型的切换。
      DESC

      def initialize(argv)
        require 'cocoapods-bb-bin/native'

        @help = argv.flag?('help')
        super
      end

      def validate!
        super
        # 这里由于 --help 是在 validate! 方法中提取的,会导致 --help 失效
        # pod lib create 也有这个问题
        banner! if @help
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
cocoapods-bb-bin-0.2.1 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.2.0 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.9.2 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.9.1 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.9 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.8.1 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.8 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.7 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.6 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.5 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.4 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.3 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.2 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.1 lib/cocoapods-bb-bin/command/bin.rb
cocoapods-bb-bin-0.1.0 lib/cocoapods-bb-bin/command/bin.rb