Sha256: 4bc48ead1542cc7461889540fcb8fd73be27e77432d857f2232d097f68eed1fa

Contents?: true

Size: 878 Bytes

Versions: 21

Compression:

Stored size: 878 Bytes

Contents

require 'origen'
<% if @type == :plugin -%>
require_relative '../config/application.rb'
<% end -%>
module <%= @namespace %>
<% if @type == :plugin -%>
  # 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

<% end -%>
  # Example of how to explicitly require a file
  # require "<%= @name %>/my_file"

  # Load all files in the lib/<%= @name %> 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__)}/<%= @name %>/**/*.rb").sort.each do |file|
    require file
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
origen_app_generators-0.3.2 templates/app_generators/application/lib/module.rb