Sha256: 43e782b141f1bf0fc50ae47020f1b2e04bda7a7cb8ead2125c28478b7cc0799e
Contents?: true
Size: 433 Bytes
Versions: 14
Compression:
Stored size: 433 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 def initialize(id, type, options = {}) @id = id @type = type @mode = options[:mode] @audience = options[:audience] @text = options[:text] @markup = options[:markup] end end end end
Version data entries
14 entries across 14 versions & 1 rubygems