Class: HeedKit::ChangelogEntry
- Inherits:
-
Struct
- Object
- Struct
- HeedKit::ChangelogEntry
- Defined in:
- lib/heedkit/changelog.rb
Overview
A single published changelog entry (release note). body is markdown; published_at
is a Time (or nil).
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#category ⇒ Object
Returns the value of attribute category.
-
#category_label ⇒ Object
Returns the value of attribute category_label.
-
#id ⇒ Object
Returns the value of attribute id.
-
#published_at ⇒ Object
Returns the value of attribute published_at.
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def body @body end |
#category ⇒ Object
Returns the value of attribute category
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def category @category end |
#category_label ⇒ Object
Returns the value of attribute category_label
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def category_label @category_label end |
#id ⇒ Object
Returns the value of attribute id
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def id @id end |
#published_at ⇒ Object
Returns the value of attribute published_at
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def published_at @published_at end |
#title ⇒ Object
Returns the value of attribute title
8 9 10 |
# File 'lib/heedkit/changelog.rb', line 8 def title @title end |
Instance Method Details
#date ⇒ Object
11 |
# File 'lib/heedkit/changelog.rb', line 11 def date = published_at |