lib/sct/commands/init.rb in sct-0.1.1 vs lib/sct/commands/init.rb in sct-0.1.2
- old
+ new
@@ -3,23 +3,23 @@
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"
+ 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"
+ require "sct/setup/setup"
Sct::Setup.start
end
implements CommandInterface
\ No newline at end of file