class Origen::Specs::Version_History

This class is used to store spec exhibit information used to document IP

Attributes

author[RW]
changes[RW]
date[RW]
external_changes_internal[RW]
label[RW]

Public Class Methods

new(date, author, changes, label = nil, external_changes_internal = nil) click to toggle source
# File lib/origen/specs/version_history.rb, line 7
def initialize(date, author, changes, label = nil, external_changes_internal = nil)
  @date = date
  @author = author
  @changes = changes
  @label = label
  @external_changes_internal = external_changes_internal
end