class Origen::Errata::SwErratumWorkaround

Attributes

description[RW]

Description of software workaround and implementation

distribution[RW]

Software distribution version which incorporates the workaround

id[R]

ID number used to identify software workaround

note[RW]

Release note

patches[RW]

Link to patch(s) for workaround

sw_disposition[RW]

Availability of workaround, ex:

-- Not Applicable: Errata does not affect software
-- Not Available: Workaround not available
-- Available: Workaround is available to be distributed
title[RW]

Title of software workaround

Public Class Methods

new(id, overview = {}, resolution = {}) click to toggle source
# File lib/origen/errata/sw_erratum_workaround.rb, line 28
def initialize(id, overview = {}, resolution = {})
  @id = id
  @title = overview[:title]
  @description = overview[:description]
  @sw_disposition = overview[:sw_disposition]
  @distribution = overview[:distribution]
  @note = resolution[:note]
  @patches = resolution[:patches]
end