Sha256: f09c9ae6e783f07d494ab88193e55ef92820ab62878a3267d9b8db4961edb133

Contents?: true

Size: 813 Bytes

Versions: 5

Compression:

Stored size: 813 Bytes

Contents

require 'origen_testers'
require 'origen'
require_relative '../config/application.rb'
module OrigenAhb
  # Load all files in the lib directory via a wildcard, if your project becomes
  # large or load order dependencies start to creep in then you may need to
  # start taking control of this manually as described above.
  # 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 up front
  # you can do that one manually and the let the wildcard take care of the rest.
  Dir.glob("#{File.dirname(__FILE__)}/**/*.rb").sort.each do |file|
    require file
  end

  # Returns an instance of the OrigenAhb::Driver
  def ahb
    @origen_ahb ||= Driver.new(self)
  end
end

# Add some aliases to handle common typos
# AHB = ahb

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
origen_ahb-0.2.0.pre6 lib/origen_ahb.rb
origen_ahb-0.2.0.pre5 lib/origen_ahb.rb
origen_ahb-0.2.0.pre4 lib/origen_ahb.rb
origen_ahb-0.2.0.pre3 lib/origen_ahb.rb
origen_ahb-0.2.0.pre2 lib/origen_ahb.rb