Class: Resumer::Command::Validate

Inherits:
Commander::Command
  • Object
show all
Defined in:
lib/resumer/commands/validate.rb

Overview

Validate a YAML resume

Instance Method Summary collapse

Constructor Details

#initializeValidate

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