module CommandLoader

Specifies the version command rubocop:disable all

Public Class Methods

included(thor) click to toggle source
# File lib/core/loaders/command_loader.rb, line 7
def self.included(thor)
  thor.class_eval do
    PluginLoader.find_plugin_files("command").each do |plugin_file|
      require plugin_file.absolute_path
      eval "include #{plugin_file.plugin_name}"
    end
  end
end