puremvc-gen/lib/pure_m_v_c_gen/commands/check_command.rb

16 lines
338 B
Ruby

module PureMVCGen
module Commands
class CheckCommand < CmdParse::Command
def initialize
super('check', false)
self.short_desc = "Validates that all required property settings are current detected"
end
def execute(args)
call_ant "validate-properties"
end
end
end
end