Sha256: c650843a712401f6ff60bdd96cfb751c8c1636d1c8a87a984750be16b64f5d12
Contents?: true
Size: 748 Bytes
Versions: 47
Compression:
Stored size: 748 Bytes
Contents
module Origen module Specs # This class is used to store override information for specified specs on instantiated IP class Override attr_accessor :block, :usage, :spec_ref, :mode_ref, :sub_type, :audience, :minimum, :maximum, :typical, :disable def initialize(block_options = {}, find_spec = {}, values = {}, options = {}) @block = block_options[:block] @usage = block_options[:usage] @spec_ref = find_spec[:spec_id] @mode_ref = find_spec[:mode_ref] @sub_type = find_spec[:sub_type] @audience = find_spec[:audience] @minimum = values[:min] @maximum = values[:max] @typical = values[:typ] @disable = options[:disable] end end end end
Version data entries
47 entries across 47 versions & 1 rubygems