Class: CreateGithubRelease::CommandLine::Validations::ValidateVerbose Private
- Defined in:
- lib/create_github_release/command_line/validations.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Validate that the verbose flag is true or false
Instance Method Summary collapse
-
#error ⇒ String+
private
Called when valid? is
false
to return the error messages. -
#valid? ⇒ Boolean
private
Returns
true
if the#verbose
istrue
orfalse
andfalse
otherwise.
Methods inherited from Base
Constructor Details
This class inherits a constructor from CreateGithubRelease::CommandLine::Validations::Base
Instance Method Details
#error ⇒ String+
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Called when valid? is false
to return the error messages
146 147 148 |
# File 'lib/create_github_release/command_line/validations.rb', line 146 def error 'verbose must be either true or false' end |
#valid? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns true
if the #verbose
is true
or false
and false
otherwise
139 140 141 |
# File 'lib/create_github_release/command_line/validations.rb', line 139 def valid? .verbose == true || .verbose == false end |