origen_app_generators 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/config/version.rb +1 -1
  3. data/lib/origen_app_generators.rb +8 -8
  4. data/lib/origen_app_generators/application.rb +8 -8
  5. data/lib/origen_app_generators/{generic_application.rb → empty_application.rb} +1 -1
  6. data/lib/origen_app_generators/{generic_plugin.rb → empty_plugin.rb} +1 -1
  7. data/lib/tasks/app_generators.rake +7 -1
  8. data/lib/tasks/new_app_tests.rake +6 -0
  9. data/templates/app_generators/application/Rakefile +2 -1
  10. data/templates/app_generators/application/config/application.rb +20 -10
  11. data/templates/app_generators/application/lib/module.rb +2 -4
  12. data/templates/app_generators/application/spec/spec_helper.rb +1 -55
  13. data/templates/app_generators/application/target/default.rb +1 -0
  14. data/templates/app_generators/application/target/production.rb +1 -6
  15. data/templates/app_generators/plugin/Gemfile +2 -7
  16. data/templates/app_generators/plugin/Rakefile +2 -1
  17. data/templates/app_generators/plugin/gemspec.rb +7 -3
  18. data/templates/app_generators/test_engineering/stand_alone_application/environment/j750.rb +1 -1
  19. data/templates/app_generators/test_engineering/stand_alone_application/environment/jlink.rb +1 -1
  20. data/templates/app_generators/test_engineering/stand_alone_application/environment/uflex.rb +1 -1
  21. data/templates/app_generators/test_engineering/stand_alone_application/environment/v93k.rb +1 -1
  22. data/templates/app_generators/test_engineering/stand_alone_application/lib/ip_block.rb +2 -2
  23. data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level.rb +3 -3
  24. data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level_controller.rb +5 -5
  25. data/templates/app_generators/test_engineering/stand_alone_application/target/top_level.rb +1 -5
  26. metadata +6 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12f932a68b79d412af20be670cbc65b00a46a070
4
- data.tar.gz: 1fbdec258c274fc187afabddf0541a3168db5650
3
+ metadata.gz: 3267cade6967ba2fa712fb084cd0660b34ee61fe
4
+ data.tar.gz: 2c99338c64db4b6a59af834dd1525d79f3ffa8be
5
5
  SHA512:
6
- metadata.gz: 76cb92b2edd4ee49d245e7a560aa98faaee5907c6e5b26dc7062b22e532a893ae5eb11ab8830616a55807dfdb34ada4706935b1b89df8d30df51d1ceab0ec4d2
7
- data.tar.gz: f58c7cb74b8af6159e2c65cd672e37ad23f357b66b7de8a372b890898262ce8df93a4822d1c6bf68e29d45b4c7fc1d9fb6cb7de39e397a4c424da535033c92cf
6
+ metadata.gz: 284643c48009e92e6782ec77d4efdf0320ea40b54e20926ade478e6f03b29e961bd8e22145c1829153a96379af602fa3fd7f89d0cc9a5cbe5d2e297249d59e82
7
+ data.tar.gz: ec620150afb77da7dec26efde4eba7a498acb0298a5147e5efec3cabb43addc35fb9ef200f56ccbaec11c667a0d68c941857a4366412b40aa59592a6da88c0fb
data/config/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module OrigenAppGenerators
2
2
  MAJOR = 0
3
- MINOR = 1
3
+ MINOR = 2
4
4
  BUGFIX = 0
5
5
  DEV = nil
6
6
 
@@ -3,8 +3,8 @@ require 'colored'
3
3
  require 'origen_app_generators/base'
4
4
  require 'origen_app_generators/application'
5
5
  require 'origen_app_generators/plugin'
6
- require 'origen_app_generators/generic_application'
7
- require 'origen_app_generators/generic_plugin'
6
+ require 'origen_app_generators/empty_application'
7
+ require 'origen_app_generators/empty_plugin'
8
8
  require 'origen_app_generators/new'
9
9
  require 'origen_app_generators/test_engineering/test_block'
10
10
  require 'origen_app_generators/test_engineering/stand_alone_application'
@@ -13,9 +13,9 @@ module OrigenAppGenerators
13
13
  extend Origen::Utility::InputCapture
14
14
 
15
15
  TEST_INPUTS = [
16
- # Generic app
16
+ # Empty app
17
17
  ['0', '0', :default, :default, []],
18
- # Generic plugin
18
+ # Empty plugin
19
19
  ['0', '1', :default, :default, 'A test block', 'yes', []],
20
20
  # Stand alone test engineering app
21
21
  ['1', '0', :default, :default, 'Falcon, Eagle', 'Falcon[ram, atd(2), comm[ram(2), osc](3)], Eagle[ram(2), atd(4)]', ['origen g example']]
@@ -25,7 +25,7 @@ module OrigenAppGenerators
25
25
  # generally speaking don't, use 'rake new' to create a new generator instead
26
26
  AVAILABLE = {
27
27
  'Test Engineering' => [
28
- OrigenAppGenerators::TestEngineering::TestBlock,
28
+ # OrigenAppGenerators::TestEngineering::TestBlock,
29
29
  OrigenAppGenerators::TestEngineering::StandAloneApplication
30
30
  ]
31
31
  }
@@ -38,7 +38,7 @@ module OrigenAppGenerators
38
38
  puts
39
39
  i = 0
40
40
  accept = [0]
41
- puts '0 - Generic / Not listed'
41
+ puts '0 - Empty / Not listed'
42
42
  AVAILABLE.reverse_each do |domain, _generators|
43
43
  i += 1
44
44
  accept << i
@@ -58,9 +58,9 @@ module OrigenAppGenerators
58
58
 
59
59
  case selection
60
60
  when 0
61
- OrigenAppGenerators::GenericApplication.start [path]
61
+ OrigenAppGenerators::EmptyApplication.start [path]
62
62
  when 1
63
- OrigenAppGenerators::GenericPlugin.start [path]
63
+ OrigenAppGenerators::EmptyPlugin.start [path]
64
64
  end
65
65
  else
66
66
  domain = AVAILABLE.to_a
@@ -30,15 +30,15 @@ module OrigenAppGenerators
30
30
  config_boot: { source: 'config/boot.rb' },
31
31
  config_commands: { source: 'config/commands.rb' },
32
32
  doc_history: { source: 'doc/history' },
33
- target_debug: { source: 'target/debug.rb' },
34
- target_production: { source: 'target/production.rb' },
35
- target_default: { source: 'debug.rb', # Relative to the file being linked to
36
- dest: 'target/default.rb', # Relative to destination_root
37
- type: :symlink },
33
+ target_default: { source: 'target/default.rb' },
34
+ # target_default: { source: 'debug.rb', # Relative to the file being linked to
35
+ # dest: 'target/default.rb', # Relative to destination_root
36
+ # type: :symlink },
37
+ environment_dir: { dest: 'environment', type: :directory },
38
38
  lib_module: { source: 'lib/module.rb',
39
39
  dest: "lib/#{@name}.rb" },
40
- lib_top_level: { source: 'lib/top_level.rb',
41
- dest: "lib/#{@name}/top_level.rb" },
40
+ # lib_top_level: { source: 'lib/top_level.rb',
41
+ # dest: "lib/#{@name}/top_level.rb" },
42
42
  lib_tasks: { source: 'lib/app.rake',
43
43
  dest: "lib/tasks/#{@name}.rake" },
44
44
  spec_helper: { source: 'spec/spec_helper.rb' },
@@ -58,7 +58,7 @@ module OrigenAppGenerators
58
58
  gitignore: { source: '.gitignore' },
59
59
  irbrc: { source: '.irbrc' },
60
60
  rspec: { source: '.rspec' },
61
- # This sets the default mode of the new workspace to 'default'
61
+ # This sets the default mode of the new workspace to 'debug'
62
62
  session: { source: 'origen_core_session',
63
63
  dest: '.session/origen_core',
64
64
  copy: true
@@ -1,6 +1,6 @@
1
1
  module OrigenAppGenerators
2
2
  # Generates a generic application shell
3
- class GenericApplication < Application
3
+ class EmptyApplication < Application
4
4
  # Any methods that are not protected will get invoked in the order they are
5
5
  # defined when the generator is run
6
6
 
@@ -1,6 +1,6 @@
1
1
  module OrigenAppGenerators
2
2
  # Generates a generic plugin shell
3
- class GenericPlugin < Plugin
3
+ class EmptyPlugin < Plugin
4
4
  # Any methods that are not protected will get invoked in the order they are
5
5
  # defined when the generator is run
6
6
 
@@ -31,7 +31,8 @@ end
31
31
  desc 'Test that all generators build'
32
32
  task :regression do
33
33
  OrigenAppGenerators::TEST_INPUTS.each do |inputs|
34
- commands = ['origen -v'] + inputs.pop
34
+ # Test that origen and the console can boot in the new app
35
+ commands = ['origen -v', 'origen lint', 'rake new_app_tests:load_target'] + inputs.pop
35
36
  if ENV['TRAVIS'] && ENV['CONTINUOUS_INTEGRATION']
36
37
  prefix = 'bundle && bundle exec '
37
38
  end
@@ -41,14 +42,19 @@ task :regression do
41
42
  Origen.app.stats.report_fail
42
43
  exit 1
43
44
  end
45
+ # Copy the new app test rake tasks to the new app
46
+ t = File.expand_path('../new_app_tests.rake', Pathname.new(__FILE__).realpath)
47
+ FileUtils.cp t, 'tmp/lib/tasks'
44
48
  # Test the app can boot
45
49
  Bundler.with_clean_env do
46
50
  Dir.chdir 'tmp' do
47
51
  commands.each do |command|
52
+ Origen.log.info "Running command: #{command}"
48
53
  unless system("#{prefix}#{command}")
49
54
  Origen.app.stats.report_fail
50
55
  exit 1
51
56
  end
57
+ Origen.log.success "Command passed: #{command}"
52
58
  end
53
59
  end
54
60
  end
@@ -0,0 +1,6 @@
1
+ namespace :new_app_tests do
2
+ desc 'Test that the app and default target can load'
3
+ task :load_target do
4
+ Origen.app.target.load!
5
+ end
6
+ end
@@ -1,5 +1,6 @@
1
1
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/app_tasks.rake, and they will automatically be available to Rake.
2
+ # for example lib/tasks/<%= @name %>.rake, and they will automatically
3
+ # be available to Rake.
3
4
  require "bundler/setup"
4
5
  require "origen"
5
6
 
@@ -1,7 +1,7 @@
1
1
  require 'origen'
2
2
  class <%= @namespace %>Application < Origen::Application
3
3
 
4
- # See http://origen-sdk.org/origen/latest/api/Origen/Application/Configuration.html
4
+ # See http://origen-sdk.org/origen/api/Origen/Application/Configuration.html
5
5
  # for a full list of the configuration options available
6
6
 
7
7
  # These attributes should never be changed, the duplication here will be resolved in future
@@ -10,15 +10,25 @@ class <%= @namespace %>Application < Origen::Application
10
10
  self.namespace = "<%= @namespace %>"
11
11
  config.name = "<%= @name %>"
12
12
  config.initials = "<%= @namespace %>"
13
- config.rc_url = ""
13
+ # Change this to point to the revision control repository for this <%= @type %>
14
+ <% if @audience == :external -%>
15
+ #config.rc_url = "ssh://git@github.com:myaccount/<%= @name %>.git"
16
+ <% else -%>
17
+ #config.rc_url = "ssh://git@sw-stash.mycompany.net/myproject/<%= @name %>.git"
18
+ <% end -%>
14
19
  <% if @audience == :external -%>
15
20
  config.release_externally = true
16
21
  <% end -%>
17
22
 
18
23
  # To enable deployment of your documentation to a web server (via the 'origen web'
19
24
  # command) fill in these attributes.
20
- config.web_directory = "/proj/.web_origen/html/<%= @name %>"
21
- config.web_domain = "http://origen-sdk.org/<%= @name %>"
25
+ <% if @audience == :external -%>
26
+ #config.web_directory = "git@github.com:Origen-SDK/Origen-SDK.github.io.git/<%= @name %>"
27
+ #config.web_domain = "http://origen-sdk.org/<%= @name %>"
28
+ <% else -%>
29
+ #config.web_directory = "/path/to/server/<%= @name %>"
30
+ #config.web_domain = "http://origen.mycompany.net/<%= @name %>"
31
+ <% end -%>
22
32
 
23
33
  # When false Origen will be less strict about checking for some common coding errors,
24
34
  # it is recommended that you leave this to true for better feedback and easier debug.
@@ -64,12 +74,12 @@ class <%= @namespace %>Application < Origen::Application
64
74
  #end
65
75
 
66
76
  # This will automatically deploy your documentation after every tag
67
- def after_release_email(tag, note, type, selector, options)
68
- command = "origen web compile --remote --api"
69
- Dir.chdir Origen.root do
70
- system command
71
- end
72
- end
77
+ #def after_release_email(tag, note, type, selector, options)
78
+ # command = "origen web compile --remote --api"
79
+ # Dir.chdir Origen.root do
80
+ # system command
81
+ # end
82
+ #end
73
83
 
74
84
  # Ensure that all tests pass before allowing a release to continue
75
85
  #def validate_release
@@ -1,17 +1,15 @@
1
1
  require 'origen'
2
2
  <% if @type == :plugin -%>
3
- require_relative '../config/application.rb'
3
+ require_relative '../config/application.rb'
4
4
  <% end -%>
5
5
  module <%= @namespace %>
6
-
7
6
  # Load all files in the lib directory via a wildcard, if your project becomes
8
7
  # large or load order dependencies start to creep in then you may need to
9
8
  # start taking control of this manually as described above.
10
9
  # Note that there is no problem from requiring a file twice (Ruby will ignore
11
10
  # the second require), so if you have a file that must be required up front
12
11
  # you can do that one manually and the let the wildcard take care of the rest.
13
- Dir.glob("#{File.dirname(__FILE__)}/**/*.rb").sort.each do |file|
12
+ Dir.glob("#{File.dirname(__FILE__)}/**/*.rb").sort.each do |file|
14
13
  require file
15
14
  end
16
-
17
15
  end
@@ -22,61 +22,7 @@ require "origen"
22
22
 
23
23
  require "rspec/legacy_formatters"
24
24
  require "#{Origen.top}/spec/format/origen_formatter"
25
-
26
- if RUBY_VERSION >= '2.0.0'
27
- require "byebug"
28
- else
29
- require 'debugger'
30
- end
31
- require 'pry'
32
-
33
- def load_target(target="default")
34
- Origen.target.switch_to target
35
- Origen.target.load!
36
- end
37
-
38
- RSpec.configure do |config|
39
- config.formatter = OrigenFormatter
40
- # rspec-expectations config goes here. You can use an alternate
41
- # assertion/expectation library such as wrong or the stdlib/minitest
42
- # assertions if you prefer.
43
- config.expect_with :rspec do |expectations|
44
- # Enable only the newer, non-monkey-patching expect syntax.
45
- # For more details, see:
46
- # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
47
- expectations.syntax = :should
48
- end
49
- end
50
- $VERBOSE=nil # Don't care about world writable dir warnings and the like
51
-
52
- require 'pathname'
53
- if File.exist? File.expand_path("../Gemfile", Pathname.new(__FILE__).realpath)
54
- require 'rubygems'
55
- require 'bundler/setup'
56
- else
57
- # If running on windows, can't use Origen helpers 'till we load it...
58
- if RUBY_PLATFORM == 'i386-mingw32'
59
- `where origen`.split("\n").find do |match|
60
- match =~ /(.*)\\bin\\origen$/
61
- end
62
- origen_top = $1.gsub("\\", "/")
63
- else
64
- origen_top = `which origen`.strip.sub("/bin/origen", "")
65
- end
66
-
67
- $LOAD_PATH.unshift "#{origen_top}/lib"
68
- end
69
-
70
- require "origen"
71
-
72
- require "rspec/legacy_formatters"
73
- require "#{Origen.top}/spec/format/origen_formatter"
74
-
75
- if RUBY_VERSION >= '2.0.0'
76
- require "byebug"
77
- else
78
- require 'debugger'
79
- end
25
+ require "byebug"
80
26
  require 'pry'
81
27
 
82
28
  def load_target(target="default")
@@ -0,0 +1 @@
1
+ # Use this file to instantiate the device model you are targeting
@@ -1,9 +1,4 @@
1
1
  # The target file is run before *every* Origen operation and is used to instantiate
2
2
  # the runtime environment - usually this means instantiating a top-level SoC or
3
3
  # IP model.
4
- #
5
- # Naming is arbitrary but instances names should be prefixed with $ which indicates a
6
- # global variable in Ruby, and this is required in order for the objects instantiated
7
- # here to be visible throughout your application code.
8
-
9
- $dut = <%= @namespace %>::TopLevel.new # Instantiate a DUT instance
4
+ <%= @namespace %>::TopLevel.new # Instantiate a DUT instance
@@ -6,15 +6,10 @@ source '<%= Origen.site_config.gem_server %>'
6
6
  # Specify your gem's dependencies in <%= @name %>.gemspec
7
7
  gemspec
8
8
 
9
+ # Only these gems should be added here
9
10
  <% if @audience == :external -%>
10
11
  # This gem provides integration with https://coveralls.io/ to monitor
11
12
  # your application's test coverage
12
13
  gem 'coveralls', require: false
13
14
  <% end -%>
14
-
15
- # Only these gems should be added here
16
- if RUBY_VERSION >= '2.0.0'
17
- gem 'byebug', '~>3.5'
18
- else
19
- gem 'debugger', '~>1.6'
20
- end
15
+ gem 'byebug', '~>3.5'
@@ -1,5 +1,6 @@
1
1
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/app_tasks.rake, and they will automatically be available to Rake.
2
+ # for example lib/tasks/<%= @name %>.rake, and they will automatically
3
+ # be available to Rake.
3
4
  #
4
5
  # Any task files found in lib/tasks/shared/*.rake will be made available to 3rd party
5
6
  # apps that use this plugin
@@ -8,9 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["<%= User.current.name %>"]
9
9
  spec.email = ["<%= User.current.email %>"]
10
10
  spec.summary = "<%= @summary %>"
11
- spec.homepage = "http://origen.freescale.net/<%= @name %>"
11
+ <% if @audience == :external -%>
12
+ #spec.homepage = "http://origen-sdk.org/<%= @name %>"
13
+ <% else -%>
14
+ #spec.homepage = "http://origen.mycompany.net/<%= @name %>"
15
+ <% end -%>
12
16
 
13
- spec.required_ruby_version = '>= 1.9.3'
17
+ spec.required_ruby_version = '>= 2'
14
18
  spec.required_rubygems_version = '>= 1.8.11'
15
19
 
16
20
  # Only the files that are hit by these wildcards will be included in the
@@ -32,5 +36,5 @@ Gem::Specification.new do |spec|
32
36
  <% end -%>
33
37
 
34
38
  # Add any gems that your plugin needs for its development environment only
35
- #spec.add_development_dependency "doc_helpers", ">= 1.7.0"
39
+ spec.add_development_dependency "origen_doc_helpers"
36
40
  end
@@ -1 +1 @@
1
- $tester = OrigenTesters::J750.new
1
+ OrigenTesters::J750.new
@@ -1 +1 @@
1
- $tester = OrigenDebuggers::JLink.new
1
+ OrigenDebuggers::JLink.new
@@ -1 +1 @@
1
- $tester = OrigenTesters::UltraFLEX.new
1
+ OrigenTesters::UltraFLEX.new
@@ -1 +1 @@
1
- $tester = OrigenTesters::V93K.new
1
+ OrigenTesters::V93K.new
@@ -13,9 +13,9 @@ module <%= @namespace %>
13
13
  def instantiate_sub_blocks(options = {})
14
14
  <% @options[:sub_blocks].each do |name, attrs| -%>
15
15
  <% if attrs[:instances] -%>
16
- sub_blocks :<%= name.underscore %>, instances: <%= attrs[:instances] %>, class_name: '<%= name.camelize %>'
16
+ sub_block :<%= name.underscore %>, instances: <%= attrs[:instances] %>, class_name: '<%= name.camelize %>'
17
17
  <% else -%>
18
- sub_block :<%= name.underscore %>, class_name: '<%= name.camelize %>'
18
+ sub_block :<%= name.underscore %>, class_name: '<%= name.camelize %>'
19
19
  <% end -%>
20
20
  <% end -%>
21
21
  end
@@ -1,5 +1,5 @@
1
1
  module <%= @namespace %>
2
- class <%= @options[:name] || "TopLevel" %>
2
+ class <%= @options[:name] || 'TopLevel' %>
3
3
  include Origen::TopLevel
4
4
 
5
5
  def initialize(options = {})
@@ -23,9 +23,9 @@ module <%= @namespace %>
23
23
  def instantiate_sub_blocks(options = {})
24
24
  <% @options[:sub_blocks].each do |name, attrs| -%>
25
25
  <% if attrs[:instances] -%>
26
- sub_blocks :<%= name.underscore %>, instances: <%= attrs[:instances] %>, class_name: '<%= name.camelize %>'
26
+ sub_block :<%= name.underscore %>, instances: <%= attrs[:instances] %>, class_name: '<%= name.camelize %>'
27
27
  <% else -%>
28
- sub_block :<%= name.underscore %>, class_name: '<%= name.camelize %>'
28
+ sub_block :<%= name.underscore %>, class_name: '<%= name.camelize %>'
29
29
  <% end -%>
30
30
  <% end -%>
31
31
  end
@@ -1,18 +1,18 @@
1
1
  module <%= @namespace %>
2
- class <%= @options[:name] || "TopLevel" %>Controller
2
+ class <%= @options[:name] || 'TopLevel' %>Controller
3
3
  include Origen::Controller
4
4
 
5
5
  def startup(options)
6
- pp "Enter test mode" do
7
- $tester.set_timeset("func_25mhz", 40) # Where 40 is the period in ns
6
+ pp 'Enter test mode' do
7
+ tester.set_timeset('func_25mhz', 40) # Where 40 is the period in ns
8
8
  pin(:tclk).drive!(1)
9
9
  pin(:resetb).drive!(1)
10
- $tester.wait time_in_us: 100
10
+ tester.wait time_in_us: 100
11
11
  end
12
12
  end
13
13
 
14
14
  def shutdown(options)
15
- pp "Reset the device" do
15
+ pp 'Reset the device' do
16
16
  pin(:resetb).drive!(0)
17
17
  pin(:tclk).drive!(0)
18
18
  end
@@ -1,8 +1,4 @@
1
1
  # The target file is run before *every* Origen operation and is used to instantiate
2
2
  # the runtime environment - usually this means instantiating a top-level SoC or
3
3
  # IP model.
4
- #
5
- # Naming is arbitrary but instances names should be prefixed with $ which indicates a
6
- # global variable in Ruby, and this is required in order for the objects instantiated
7
- # here to be visible throughout your application code.
8
- $dut = <%= @namespace %>::<%= @options[:name] || "TopLevel" %>.new # Instantiate a DUT instance
4
+ <%= @namespace %>::<%= @options[:name] || "TopLevel" %>.new # Instantiate a DUT instance
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen_app_generators
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-10 00:00:00.000000000 Z
11
+ date: 2015-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: origen
@@ -39,8 +39,8 @@ files:
39
39
  - lib/origen_app_generators.rb
40
40
  - lib/origen_app_generators/application.rb
41
41
  - lib/origen_app_generators/base.rb
42
- - lib/origen_app_generators/generic_application.rb
43
- - lib/origen_app_generators/generic_plugin.rb
42
+ - lib/origen_app_generators/empty_application.rb
43
+ - lib/origen_app_generators/empty_plugin.rb
44
44
  - lib/origen_app_generators/new.rb
45
45
  - lib/origen_app_generators/plugin.rb
46
46
  - lib/origen_app_generators/sub_block_parser.rb
@@ -48,6 +48,7 @@ files:
48
48
  - lib/origen_app_generators/test_engineering/test_block.rb
49
49
  - lib/tasks/app_generators.rake
50
50
  - lib/tasks/boot.rb
51
+ - lib/tasks/new_app_tests.rake
51
52
  - templates/app_generators/application/Gemfile
52
53
  - templates/app_generators/application/Rakefile
53
54
  - templates/app_generators/application/config/application.rb
@@ -61,6 +62,7 @@ files:
61
62
  - templates/app_generators/application/origen_core_session
62
63
  - templates/app_generators/application/spec/spec_helper.rb
63
64
  - templates/app_generators/application/target/debug.rb
65
+ - templates/app_generators/application/target/default.rb
64
66
  - templates/app_generators/application/target/production.rb
65
67
  - templates/app_generators/new/generator.rb
66
68
  - templates/app_generators/new/info.md.erb