Class: Crtrunner::Carthage

Inherits:
Object
  • Object
show all
Defined in:
lib/crtrunner/carthage.rb

Class Method Summary collapse

Class Method Details

.updateObject



6
7
8
9
10
11
12
13
14
# File 'lib/crtrunner/carthage.rb', line 6

def update
  puts "[VERBOSE] Update carthage.".colorize(:white)
  if carthage_file?
    `carthage update`
    puts "[INFO] Carthage: Successfull".colorize(:green)
  else
    puts "[INFO] No carthage file found.".colorize(:red)
  end
end