Class: Origen::Chips::Design_Entry
- Defined in:
- lib/origen/chips/design_entry.rb
Instance Attribute Summary collapse
-
#date ⇒ Object
date that the document was released.
-
#description ⇒ Object
description of the item.
-
#location ⇒ Object
location.
-
#nda ⇒ Object
nda.
-
#release ⇒ Object
released status.
-
#revision ⇒ Object
revision.
-
#type ⇒ Object
document type, e.g.
Instance Method Summary collapse
-
#initialize(date, type, revision, description, options = {}) ⇒ Design_Entry
constructor
A new instance of Design_Entry.
Constructor Details
#initialize(date, type, revision, description, options = {}) ⇒ Design_Entry
Returns a new instance of Design_Entry.
25 26 27 28 29 30 31 32 33 |
# File 'lib/origen/chips/design_entry.rb', line 25 def initialize(date, type, revision, description, = {}) @date = date @type = type @revision = revision @description = description @nda = [:nda] @release = [:release] @location = [:location] end |
Instance Attribute Details
#date ⇒ Object
date that the document was released
5 6 7 |
# File 'lib/origen/chips/design_entry.rb', line 5 def date @date end |
#description ⇒ Object
description of the item
23 24 25 |
# File 'lib/origen/chips/design_entry.rb', line 23 def description @description end |
#location ⇒ Object
location
20 21 22 |
# File 'lib/origen/chips/design_entry.rb', line 20 def location @location end |
#release ⇒ Object
released status
17 18 19 |
# File 'lib/origen/chips/design_entry.rb', line 17 def release @release end |
#revision ⇒ Object
revision
11 12 13 |
# File 'lib/origen/chips/design_entry.rb', line 11 def revision @revision end |
#type ⇒ Object
document type, e.g. Reference Manual, One Pager, Data Sheet
8 9 10 |
# File 'lib/origen/chips/design_entry.rb', line 8 def type @type end |