Sha256: 5765dae1f14fda42d74ece0308faf7e759878a5aca53aba1c6a7744ac6cf3e86
Contents?: true
Size: 466 Bytes
Versions: 4
Compression:
Stored size: 466 Bytes
Contents
module Origen module Specs # This class is used to store spec exhibit information used to document IP class Exhibit attr_accessor :id, :type, :title, :description, :reference, :markup def initialize(id, type, options = {}) @id = id @type = type @title = options[:title] @description = options[:description] @reference = options[:reference] @markup = options[:markup] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
origen-0.0.5 | lib/origen/specs/exhibit.rb |
origen-0.0.4 | lib/origen/specs/exhibit.rb |
origen-0.0.3 | lib/origen/specs/exhibit.rb |
origen-0.0.2 | lib/origen/specs/exhibit.rb |