Nunnery/m2prof

View on GitHub
lib/m2prof/commands.rb

Summary

Maintainability
A
0 mins
Test Coverage
module M2Prof
  # Module that contains all of the commands used by
  # m2prof.
  # @author Richard Harrah
  module Commands
    autoload :List, 'm2prof/commands/list'
    autoload :Use, 'm2prof/commands/use'
    autoload :Which, 'm2prof/commands/which'
  end
end