Class: Pod::Command::List

Inherits:
Pod::Command show all
Defined in:
lib/cocoapods/command/list.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Pod::Command

#ensure_master_spec_repo_exists!, ensure_not_root_or_allowed!, git_version, #installer_for_config, report_error, run, #verify_lockfile_exists!, verify_minimum_git_version!, #verify_podfile_exists!, verify_xcode_license_approved!

Methods included from Pod::Config::Mixin

#config

Constructor Details

#initialize(argv) ⇒ List

Returns a new instance of List.



14
15
16
17
18
# File 'lib/cocoapods/command/list.rb', line 14

def initialize(argv)
  @update = argv.flag?('update')
  @stats  = argv.flag?('stats')
  super
end

Class Method Details

.optionsObject



7
8
9
10
11
12
# File 'lib/cocoapods/command/list.rb', line 7

def self.options
  [
    ['--update', 'Run `pod repo update` before listing'],
    ['--stats',  'Show additional stats (like GitHub watchers and forks)'],
  ].concat(super)
end

Instance Method Details

#runObject



20
21
22
23
24
25
26
# File 'lib/cocoapods/command/list.rb', line 20

def run
  update_if_necessary!

  sets = config.sources_manager.aggregate.all_sets
  sets.each { |set| UI.pod(set, :name_and_version) }
  UI.puts "\n#{sets.count} pods were found"
end

#update_if_necessary!Object



28
29
30
31
32
# File 'lib/cocoapods/command/list.rb', line 28

def update_if_necessary!
  UI.section("\nUpdating Spec Repositories\n".yellow) do
    Repo::Update.new(CLAide::ARGV.new([])).run
  end if @update
end