Class: Git::TagDeleteResult
- Inherits:
-
Data
- Object
- Data
- Git::TagDeleteResult
- Defined in:
- lib/git/tag_delete_result.rb
Overview
Represents the result of a tag delete operation
This is an immutable data object returned by Commands::Tag::Delete#call. It contains information about which tags were successfully deleted and which failed to be deleted, along with the reason for each failure.
Git's git tag -d command uses "best effort" semantics - it deletes as many
tags as possible and reports errors for those that couldn't be deleted. This
result object reflects that behavior, allowing callers to inspect both
successes and failures.
Instance Attribute Summary collapse
-
#deleted ⇒ Object
readonly
Returns the value of attribute deleted.
-
#not_deleted ⇒ Object
readonly
Returns the value of attribute not_deleted.
Instance Method Summary collapse
-
#success? ⇒ Boolean
Returns true if all requested tags were successfully deleted.
Instance Attribute Details
#deleted ⇒ Object (readonly)
Returns the value of attribute deleted
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/git/tag_delete_result.rb', line 45 TagDeleteResult = Data.define(:deleted, :not_deleted) do # Returns true if all requested tags were successfully deleted # # @return [Boolean] true if no tags failed to delete, false otherwise # # @example # result = tag_delete.call('v1.0.0') # if result.success? # puts "All tags deleted successfully" # else # puts "Some tags could not be deleted:" # result.not_deleted.each { |f| puts " #{f.name}: #{f.error_message}" } # end # def success? not_deleted.empty? end end |
#not_deleted ⇒ Object (readonly)
Returns the value of attribute not_deleted
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/git/tag_delete_result.rb', line 45 TagDeleteResult = Data.define(:deleted, :not_deleted) do # Returns true if all requested tags were successfully deleted # # @return [Boolean] true if no tags failed to delete, false otherwise # # @example # result = tag_delete.call('v1.0.0') # if result.success? # puts "All tags deleted successfully" # else # puts "Some tags could not be deleted:" # result.not_deleted.each { |f| puts " #{f.name}: #{f.error_message}" } # end # def success? not_deleted.empty? end end |
Instance Method Details
#success? ⇒ Boolean
Returns true if all requested tags were successfully deleted
59 60 61 |
# File 'lib/git/tag_delete_result.rb', line 59 def success? not_deleted.empty? end |