Class: Resumer::Command::Validate
- Inherits:
-
Commander::Command
- Object
- Commander::Command
- Resumer::Command::Validate
- Defined in:
- lib/resumer/commands/validate.rb
Overview
Validate a YAML resume
Instance Method Summary collapse
-
#initialize ⇒ Validate
constructor
A new instance of Validate.
- #run(*_args) ⇒ Object
Constructor Details
#initialize ⇒ Validate
Returns a new instance of Validate.
9 10 11 12 13 |
# File 'lib/resumer/commands/validate.rb', line 9 def initialize super(:validate) @summary = 'Validate your YAML resume (not implemented)' @syntax = "#{Resumer::BIN} validate [/path/to/resume.yml]" end |
Instance Method Details
#run(*_args) ⇒ Object
15 16 17 |
# File 'lib/resumer/commands/validate.rb', line 15 def run(*_args) say "[#{self.class.name}] Feature not yet implemented" end |