Sha256: 7c9be1100988e5ce4ab7ac728c044f2fa12628925aa8cd27c8b7ca8e22855a59

Contents?: true

Size: 832 Bytes

Versions: 2

Compression:

Stored size: 832 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.1.1 lib/origen_spi.rb
origen_spi-0.1.0 lib/origen_spi.rb