Sha256: 18e2e08068d8ad43d10d5fa5b9ba2ffe1b15bc9ea15773be584833d62597c2f7

Contents?: true

Size: 404 Bytes

Versions: 5

Compression:

Stored size: 404 Bytes

Contents

#!/usr/bin/env ruby

require 'massimo'

case ARGV.shift
when 'b', 'build'
  Massimo::Commands::Build
when 'g', 'generate'
  Massimo::Commands::Generate
when nil, '-h', '--help', 'help'
  Massimo::Commands::Help
when 's', 'server'
  Massimo::Commands::Server
when '-v', '--version', 'version'
  Massimo::Commands::Version
when 'w', 'watch'
  Massimo::Commands::Watch
else
  Massimo::Commands::Help
end.run

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
massimo-0.7.5 bin/massimo
massimo-0.7.4 bin/massimo
massimo-0.7.3 bin/massimo
massimo-0.7.2 bin/massimo
massimo-0.7.1 bin/massimo