Sha256: 9a647583c47acda56fef5887c7014e37d40402beb884c62214ddd40da81edafd

Contents?: true

Size: 661 Bytes

Versions: 5

Compression:

Stored size: 661 Bytes

Contents

#!/usr/bin/env ruby

#=============================================================================
# This module consolidates all of the classes the make up a complete MmTool
# application, and is spread throughout several files based mostly on the
# classes they contain.
#=============================================================================
module MmTool
  require_relative '../lib/mm_tool'
end


#=============================================================================
# Main
#=============================================================================

cli = MmTool::MmToolCli.new(MmTool::ApplicationMain.shared_application)
cli.run(ARGV)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mm_tool-0.1.13 bin/mm_tool
mm_tool-0.1.12 bin/mm_tool
mm_tool-0.1.11 bin/mm_tool
mm_tool-0.1.10 bin/mm_tool
mm_tool-0.1.9 bin/mm_tool