Class: Avm::Tools::Runner::Application::Info
- Inherits:
-
Object
- Object
- Avm::Tools::Runner::Application::Info
- Defined in:
- lib/avm/tools/runner/application/info.rb
Constant Summary collapse
- APPLICATION_PROPERTIES =
{ id: 'ID', name: 'Name', organization: 'Organization', scm: 'SCM', stereotype: 'Stereotype' }.freeze
Instance Method Summary collapse
Instance Method Details
#item_hash ⇒ Hash
25 26 27 28 29 |
# File 'lib/avm/tools/runner/application/info.rb', line 25 def item_hash APPLICATION_PROPERTIES.inject({}) do |a, e| a.merge(e.last => application.send(e.first).to_s) end end |
#run ⇒ Object
20 21 22 |
# File 'lib/avm/tools/runner/application/info.rb', line 20 def run run_output end |