Class: Shelter::CLI::App

Inherits:
Thor
  • Object
show all
Defined in:
lib/cli/app.rb

Overview

Main Shelter app

Class Attribute Summary collapse

Class Attribute Details

.configObject



17
18
19
20
21
# File 'lib/cli/app.rb', line 17

def self.config
  @config ||= Shelter::Configuration.new
  @config.load_shelterfile
  block_given? ? yield(@config) : @config
end