the-berta-project/berta

View on GitHub
lib/berta.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Main Berta module
module Berta
  autoload :Service, 'berta/service'
  autoload :Exclusions, 'berta/exclusions'
  autoload :VirtualMachineHandler, 'berta/virtual_machine_handler'
  autoload :EntityHandler, 'berta/entity_handler'
  autoload :Notification, 'berta/notification'
  autoload :CommandExecutor, 'berta/command_executor'
  autoload :CLI, 'berta/cli'
  autoload :Errors, 'berta/errors'
  autoload :Entities, 'berta/entities'
  autoload :Utils, 'berta/utils'
  autoload :Settings, 'berta/settings'
end

require 'berta/version'