class Pod::Command::Repo::Update
Public Class Methods
new(argv)
click to toggle source
Calls superclass method
Pod::Command::new
# File lib/cocoapods/command/repo/update.rb, line 16 def initialize(argv) @name = argv.shift_argument super end
Public Instance Methods
run()
click to toggle source
# File lib/cocoapods/command/repo/update.rb, line 21 def run show_output = !config.silent? config.sources_manager.update(@name, show_output) end