Class: Chef::Knife::AppList

Inherits:
Chef::Knife show all
Defined in:
lib/chef/knife/app_list.rb

Instance Method Summary collapse

Instance Method Details

#runObject

This method will be executed when you run this knife command.



12
13
14
15
16
17
18
19
# File 'lib/chef/knife/app_list.rb', line 12

def run
  
  # Create or update the app
  Chapp.database.app_ids.each do |app_id|
    puts " * #{app_id}"
  end
  
end