Class: FPM::Command::Validator
- Inherits:
-
Object
- Object
- FPM::Command::Validator
- Includes:
- Util
- Defined in:
- lib/fpm/command.rb
Overview
A simple flag validator
The goal of this class is to ensure the flags and arguments given are a valid configuration.
Instance Method Summary collapse
-
#initialize(command) ⇒ Validator
constructor
A new instance of Validator.
-
#messages ⇒ Object
def mandatory.
-
#ok? ⇒ Boolean
def initialize.
Methods included from Util
#copied_entries, #copy_entry, #default_shell, #expand_pessimistic_constraints, #mknod_w, #program_exists?, #program_in_path?, #safesystem, #safesystemout, #tar_cmd, #with
Constructor Details
#initialize(command) ⇒ Validator
Returns a new instance of Validator.
493 494 495 496 497 498 499 |
# File 'lib/fpm/command.rb', line 493 def initialize(command) @command = command @valid = true = [] validate end |
Instance Method Details
#messages ⇒ Object
def mandatory
561 562 563 |
# File 'lib/fpm/command.rb', line 561 def return end |
#ok? ⇒ Boolean
def initialize
501 502 503 |
# File 'lib/fpm/command.rb', line 501 def ok? return @valid end |