Method: Stax::SubCommand#info

Defined in:
lib/stax/subcommand.rb

#infoObject



23
24
25
26
27
28
29
30
31
32
# File 'lib/stax/subcommand.rb', line 23

def info
  self.class.stax_info_tasks&.each do |task|
    begin
      invoke task
      puts "\n"
    rescue NoMethodError => e
      warn(e.message)
    end
  end
end