Class: PureMVCGen::Commands::CheckCommand

Inherits:
CmdParse::Command show all
Defined in:
lib/pure_m_v_c_gen/commands/check_command.rb

Instance Method Summary collapse

Methods inherited from CmdParse::Command

#default_options

Constructor Details

#initializeCheckCommand

Returns a new instance of CheckCommand.



5
6
7
8
# File 'lib/pure_m_v_c_gen/commands/check_command.rb', line 5

def initialize
  super('check', false)
  self.short_desc = "Validates that all required property settings are current detected"
end

Instance Method Details

#execute(args) ⇒ Object



10
11
12
# File 'lib/pure_m_v_c_gen/commands/check_command.rb', line 10

def execute(args)
  call_ant "validate-properties"
end