module CodeInventory::CLI

Public Class Methods

start() click to toggle source
# File lib/codeinventory/cli.rb, line 8
def self.start
  plugin_files = Gem.find_latest_files('codeinventory_plugin.rb')
  plugin_files.each do |plugin_file|
    load plugin_file
  end
  App.start
end