Class: CreateGithubRelease::CommandLine::Validations::ValidateDefaultBranch Private
- Inherits:
-
Base
- Object
- Base
- CreateGithubRelease::CommandLine::Validations::ValidateDefaultBranch
- 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.
Validates the default branch (if given) a valid Git reference
Instance Method Summary collapse
-
#error ⇒ String+
private
Called when valid? is
falseto return the error messages. -
#valid? ⇒ Boolean
private
Returns
trueif the#default_branchis nil or is a valid git reference.
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
210 |
# File 'lib/create_github_release/command_line/validations.rb', line 210 def error = "--default-branch='#{.default_branch}' is not valid" |
#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 #default_branch is nil or is a valid git reference
205 |
# File 'lib/create_github_release/command_line/validations.rb', line 205 def valid? = .default_branch.nil? || valid_reference?(.default_branch) |