Sha256: 333405fa0dcef269d20b9aafb84e615a42612b181a763212b3879e4ea785ff17

Contents?: true

Size: 407 Bytes

Versions: 1

Compression:

Stored size: 407 Bytes

Contents

require "active_support"
require "active_support/dependencies/autoload"

require "thor"

module Hubber
  module Command
    extend ActiveSupport::Autoload
    
    autoload :Base

    class << self
      def invoke(full_namespace, args = [], **config)
        require_relative "commands/application/application_command"

        ApplicationCommand.perform(:perform, args, config)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hubber-0.1.2 lib/Hubber/command.rb