Sha256: 160a64b6d26276e4227ea69cc61719b5d9eafb3b0c9264b620951ed3301b5538

Contents?: true

Size: 1.1 KB

Versions: 13

Compression:

Stored size: 1.1 KB

Contents

# This file is used to boot your plugin when it is running in standalone mode
# from its own workspace - i.e. when the plugin is being developed.
#
# It will not be loaded when the plugin is imported by a 3rd party app - in that
# case only lib/origen_verilog.rb is loaded.
#
# Therefore this file can be used to load anything extra that you need to boot
# the development environment for this app. For example, this is typically used
# to load some additional test classes to use your plugin APIs so that they can
# be tested and/or interacted with in the console.
require "origen_verilog"

module OrigenVerilogDev
  # Example of how to explicitly require a file
  # require "origen_verilog_dev/my_file"
    
  # Load all files in the lib/origen_verilog_dev 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__)}/../lib/origen_verilog_dev/**/*.rb").sort.each do |file|
    require file
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
origen_verilog-0.6.3 config/boot.rb
origen_verilog-0.6.2 config/boot.rb
origen_verilog-0.6.1 config/boot.rb
origen_verilog-0.6.0 config/boot.rb
origen_verilog-0.5.2 config/boot.rb
origen_verilog-0.5.1 config/boot.rb
origen_verilog-0.5.0 config/boot.rb
origen_verilog-0.4.0 config/boot.rb
origen_verilog-0.3.1 config/boot.rb
origen_verilog-0.3.0 config/boot.rb
origen_verilog-0.2.2 config/boot.rb
origen_verilog-0.2.1 config/boot.rb
origen_verilog-0.2.0 config/boot.rb