require 'sct/command_interface' module Sct class InitCommand IS_PUBLIC_COMMAND = true SYNTAX = 'Sct init' SUMMARY = 'Initialize a base configuration file for Sct' EXAMPLE = 'Sct init' EXAMPLE_DESCRIPTION = 'Sct init will create a Sct folder inside your working directory and a Sctfile' DESCRIPTION = "Sct init will create a configuration file called Sctfile in your project" OPTIONS = [] def initialize end def execute(args, options) require "Sct/setup/setup" Sct::Setup.start end implements CommandInterface end end