Class: Gitt::Models::Tag
- Inherits:
-
Struct
- Object
- Struct
- Gitt::Models::Tag
- Includes:
- Trailable
- Defined in:
- lib/gitt/models/tag.rb
Overview
Represents tag details.
Instance Attribute Summary collapse
-
#author_email ⇒ Object
Returns the value of attribute author_email.
-
#author_name ⇒ Object
Returns the value of attribute author_name.
-
#authored_at ⇒ Object
Returns the value of attribute authored_at.
-
#authored_relative_at ⇒ Object
Returns the value of attribute authored_relative_at.
-
#body ⇒ Object
Returns the value of attribute body.
-
#committed_at ⇒ Object
Returns the value of attribute committed_at.
-
#committed_relative_at ⇒ Object
Returns the value of attribute committed_relative_at.
-
#committer_email ⇒ Object
Returns the value of attribute committer_email.
-
#committer_name ⇒ Object
Returns the value of attribute committer_name.
-
#sha ⇒ Object
Returns the value of attribute sha.
-
#signature ⇒ Object
Returns the value of attribute signature.
-
#subject ⇒ Object
Returns the value of attribute subject.
-
#trailers ⇒ Object
Returns the value of attribute trailers.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize ⇒ Tag
constructor
A new instance of Tag.
Methods included from Trailable
#find_trailer, #find_trailers, #trailer_value_for, #trailer_values_for
Constructor Details
#initialize ⇒ Tag
Returns a new instance of Tag.
24 25 26 27 |
# File 'lib/gitt/models/tag.rb', line 24 def initialize(**) super freeze end |
Instance Attribute Details
#author_email ⇒ Object
Returns the value of attribute author_email
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def @author_email end |
#author_name ⇒ Object
Returns the value of attribute author_name
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def @author_name end |
#authored_at ⇒ Object
Returns the value of attribute authored_at
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def @authored_at end |
#authored_relative_at ⇒ Object
Returns the value of attribute authored_relative_at
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def @authored_relative_at end |
#body ⇒ Object
Returns the value of attribute body
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def body @body end |
#committed_at ⇒ Object
Returns the value of attribute committed_at
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def committed_at @committed_at end |
#committed_relative_at ⇒ Object
Returns the value of attribute committed_relative_at
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def committed_relative_at @committed_relative_at end |
#committer_email ⇒ Object
Returns the value of attribute committer_email
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def committer_email @committer_email end |
#committer_name ⇒ Object
Returns the value of attribute committer_name
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def committer_name @committer_name end |
#sha ⇒ Object
Returns the value of attribute sha
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def sha @sha end |
#signature ⇒ Object
Returns the value of attribute signature
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def signature @signature end |
#subject ⇒ Object
Returns the value of attribute subject
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def subject @subject end |
#trailers ⇒ Object
Returns the value of attribute trailers
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def trailers @trailers end |
#version ⇒ Object
Returns the value of attribute version
6 7 8 |
# File 'lib/gitt/models/tag.rb', line 6 def version @version end |