module OptionsLoader

Specifies the version command rubocop:disable all

Public Class Methods

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