Sha256: b537dc224b85af6711ced2f0627cbd96a19483056b6ac1a97a79853b140925a6
Contents?: true
Size: 507 Bytes
Versions: 8
Compression:
Stored size: 507 Bytes
Contents
module Origen module Specs # This class is used to store spec note information used to document IP class Note attr_accessor :id, :type, :mode, :audience, :text, :markup, :internal_comment def initialize(id, type, options = {}) @id = id @type = type @mode = options[:mode] @audience = options[:audience] @text = options[:text] @markup = options[:markup] @internal_comment = options[:internal_comment] end end end end
Version data entries
8 entries across 8 versions & 1 rubygems