Class: Chef::Knife::AppList
- Inherits:
-
Chef::Knife
- Object
- Chef::Knife
- Chef::Knife::AppList
- Defined in:
- lib/chef/knife/app_list.rb
Instance Method Summary collapse
-
#run ⇒ Object
This method will be executed when you run this knife command.
Instance Method Details
#run ⇒ Object
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 |