Class: Services::AppConfig::Displayer
- Inherits:
-
Object
- Object
- Services::AppConfig::Displayer
- Defined in:
- lib/busbar_cli/services/app_config/displayer.rb
Class Method Summary collapse
Class Method Details
.call ⇒ Object
4 5 6 7 8 9 10 11 12 |
# 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 |