Class: Abt::Providers::Harvest::Commands::Projects
Instance Attribute Summary
Attributes inherited from BaseCommand
#config, #path
Attributes inherited from BaseCommand
#ari, #cli, #flags
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from BaseCommand
#initialize
Methods inherited from BaseCommand
flags, #initialize
Class Method Details
.description ⇒ Object
12
13
14
|
# File 'lib/abt/providers/harvest/commands/projects.rb', line 12
def self.description
"List all available projects - useful for piping into grep etc."
end
|
.usage ⇒ Object
8
9
10
|
# File 'lib/abt/providers/harvest/commands/projects.rb', line 8
def self.usage
"abt projects harvest"
end
|
Instance Method Details
16
17
18
19
20
|
# File 'lib/abt/providers/harvest/commands/projects.rb', line 16
def perform
projects.map do |project|
print_project(project)
end
end
|