Class: Expressir::Commands::Validate

Inherits:
Thor
  • Object
show all
Defined in:
lib/expressir/commands/validate.rb

Overview

Thor subcommand for EXPRESS validation operations

Instance Method Summary collapse

Instance Method Details

#ascii(path) ⇒ Object



80
81
82
83
# File 'lib/expressir/commands/validate.rb', line 80

def ascii(path)
  require_relative "validate_ascii"
  ValidateAscii.new(options).run(path)
end

#load(*paths) ⇒ Object



32
33
34
35
# File 'lib/expressir/commands/validate.rb', line 32

def load(*paths)
  require_relative "validate_load"
  ValidateLoad.new(options).run(paths)
end