class YARD::Config

def self.load_commandline_plugins

Load plugins from {arguments}
def self.load_commandline_plugins
  with_yardopts do
    arguments.each_with_index do |arg, i|
      next unless arg == '--plugin'
      load_plugin(arguments[i + 1])
    end
  end
end