Sha256: 9f13c7c4e26038d48e107ca563a9f05227815decd672a65f66e36b191774d2fe
Contents?: true
Size: 813 Bytes
Versions: 2
Compression:
Stored size: 813 Bytes
Contents
require 'origen' require 'origen_testers' require_relative '../config/application.rb' module OrigenSpi # THIS FILE SHOULD ONLY BE USED TO LOAD RUNTIME DEPENDENCIES # If this plugin has any development dependencies (e.g. dummy DUT or other models that are only used # for testing), then these should be loaded from config/boot.rb # Example of how to explicitly require a file # require "origen_spi/my_file" # Load all files in the lib/origen_spi directory. # Note that there is no problem from requiring a file twice (Ruby will ignore # the second require), so if you have a file that must be required first, then # explicitly require it up above and then let this take care of the rest. Dir.glob("#{File.dirname(__FILE__)}/origen_spi/**/*.rb").sort.each do |file| require file end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
origen_spi-0.3.0 | lib/origen_spi.rb |
origen_spi-0.2.0 | lib/origen_spi.rb |