mattbrictson/tomo

View on GitHub
lib/tomo/commands.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Tomo
  module Commands
    autoload :CompletionScript, "tomo/commands/completion_script"
    autoload :Default, "tomo/commands/default"
    autoload :Deploy, "tomo/commands/deploy"
    autoload :Help, "tomo/commands/help"
    autoload :Init, "tomo/commands/init"
    autoload :Run, "tomo/commands/run"
    autoload :Setup, "tomo/commands/setup"
    autoload :Tasks, "tomo/commands/tasks"
    autoload :Version, "tomo/commands/version"
  end
end