Sha256: 19e5aef74c8265b6ede8fcaa83b467868198ca0356f3c3a45b8d53c9028556f1
Contents?: true
Size: 581 Bytes
Versions: 43
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true require 'avm/tools/core_ext' module Avm module Tools class Runner class Applications class List runner_with :help, :output def run infov 'Found', applications.count run_output end def output_content applications.map { |s| "#{s}\n" }.join end private def applications_uncached ::Avm::Registry.applications.available .sort_by { |s| [s.id] } end end end end end end
Version data entries
43 entries across 43 versions & 2 rubygems