class Pod::Command::RepoTal::Update

Public Class Methods

new(argv) click to toggle source
Calls superclass method
# File lib/cocoapods-repo-tal/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-repo-tal/command/repo/update.rb, line 21
def run
  show_output = !config.silent?
  config.sources_manager.update(@name, show_output)
end