Sha256: 9ee688030acfb3a91979ddfaaf9f9a61dedee8128e273ad3f5ab8669d5a05029

Contents?: true

Size: 683 Bytes

Versions: 5

Compression:

Stored size: 683 Bytes

Contents

require 'rest'
require 'json'

# The CocoaPods namespace
#
module Pod
  class Command
    # The pod plugins command.
    #
    class Plugins < Command
      require 'pod/command/plugins/list'
      require 'pod/command/plugins/search'
      require 'pod/command/plugins/create'

      self.abstract_command = true
      self.default_subcommand = 'list'

      self.summary = 'Show available CocoaPods plugins'
      self.description = <<-DESC
        Lists or searches the available CocoaPods plugins
        and show if you have them installed or not.

        Also allows you to quickly create a new Cocoapods
        plugin using a provided template.
      DESC
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cocoapods-plugins-0.3.2 lib/pod/command/plugins.rb
cocoapods-plugins-0.3.1 lib/pod/command/plugins.rb
cocoapods-plugins-0.3.0 lib/pod/command/plugins.rb
cocoapods-plugins-0.2.0 lib/pod/command/plugins.rb
cocoapods-plugins-0.1.1 lib/pod/command/plugins.rb