Class: PureMVCGen::Commands::CheckCommand
- Inherits:
-
CmdParse::Command
- Object
- CmdParse::Command
- PureMVCGen::Commands::CheckCommand
- Defined in:
- lib/pure_m_v_c_gen/commands/check_command.rb
Instance Method Summary collapse
- #execute(args) ⇒ Object
-
#initialize ⇒ CheckCommand
constructor
A new instance of CheckCommand.
Methods inherited from CmdParse::Command
Constructor Details
#initialize ⇒ CheckCommand
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 |