Method: Omnibus::Command::Cache#missing

Defined in:
lib/omnibus/cli/cache.rb

#missingObject



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/omnibus/cli/cache.rb', line 65

def missing
  result = S3Cache.missing

  if result.empty?
    say("There are no missing packages in the cache.")
  else
    say("The following packages are missing from the cache:")
    result.each do |software|
      say("  * #{software.name}-#{software.version}")
    end
  end
end