class Services::AppConfig::Displayer

Public Class Methods

call() click to toggle source
# File lib/busbar_cli/services/app_config/displayer.rb, line 4
def self.call
  puts
  BusbarCLI.command_help(Thor::Base.shell.new, 'app_config')
  puts
  puts 'Your current application config is:'
  Services::AppConfig.all.each do |config, value|
    puts "#{config}: #{value}"
  end
end