class Devkitkat::Main

Public Class Methods

execute() click to toggle source
# File lib/devkitkat.rb, line 11
def self.execute
  command = Command.new
  config = Config.new(command.kit_root)

  target_services = config.resolve!(command.target, exclude: command.options[:exclude])
                          .map { |name| Service.new(name, config, command) }

  Processor.new(target_services, command, config).execute
end