Class: Apadmi::Grout::ClassifiedIssues
- Inherits:
-
Struct
- Object
- Struct
- Apadmi::Grout::ClassifiedIssues
- Defined in:
- lib/apadmi/grout/models/release_notes_config.rb
Overview
Instance Attribute Summary collapse
-
#defects ⇒ Object
Returns the value of attribute defects.
-
#features ⇒ Object
Returns the value of attribute features.
-
#improvements ⇒ Object
Returns the value of attribute improvements.
-
#others ⇒ Object
Returns the value of attribute others.
-
#tasks ⇒ Object
Returns the value of attribute tasks.
Instance Method Summary collapse
-
#empty ⇒ Object
Returns true if all categories are empty.
Instance Attribute Details
#defects ⇒ Object
Returns the value of attribute defects
10 11 12 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 10 def defects @defects end |
#features ⇒ Object
Returns the value of attribute features
10 11 12 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 10 def features @features end |
#improvements ⇒ Object
Returns the value of attribute improvements
10 11 12 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 10 def improvements @improvements end |
#others ⇒ Object
Returns the value of attribute others
10 11 12 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 10 def others @others end |
#tasks ⇒ Object
Returns the value of attribute tasks
10 11 12 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 10 def tasks @tasks end |
Instance Method Details
#empty ⇒ Object
Returns true if all categories are empty
18 19 20 21 |
# File 'lib/apadmi/grout/models/release_notes_config.rb', line 18 def empty tasks.empty? && features.empty? && improvements.empty? && defects.empty? && others.empty? end |