class StartCommand

Public Instance Methods

info() click to toggle source
# File lib/woodstove/packagecommands.rb, line 84
def info; 'Runs `main` script for current package.'; end
long() click to toggle source
# File lib/woodstove/packagecommands.rb, line 81
def long; 'start'; end
opts() click to toggle source
# File lib/woodstove/packagecommands.rb, line 83
def opts; '[args]'; end
run(args) click to toggle source
# File lib/woodstove/packagecommands.rb, line 86
def run args
  current_package.run_script 'main', args.join(' ')
end
short() click to toggle source
# File lib/woodstove/packagecommands.rb, line 82
def short; 's'; end