Module: Dapp::Project::Command::List

Included in:
Dapp::Project
Defined in:
lib/dapp/project/command/list.rb

Overview

List

Instance Method Summary collapse

Instance Method Details

#listObject



8
9
10
11
12
13
14
15
16
# File 'lib/dapp/project/command/list.rb', line 8

def list
  build_configs.each do |config|
    if config._name.nil?
      log_warning("Project '#{name}' with nameless dimg!")
    else
      puts config._name
    end
  end
end