origen_app_generators 1.2.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/bin/boot.rb +4 -2
- data/config/commands.rb +3 -3
- data/config/shared_commands.rb +11 -6
- data/config/version.rb +2 -2
- data/lib/origen_app_generators.rb +6 -4
- data/lib/origen_app_generators/application.rb +12 -12
- data/lib/origen_app_generators/base.rb +34 -8
- data/lib/origen_app_generators/new.rb +17 -9
- data/lib/{tasks/new_app_tests.rake → origen_app_generators/new_app_tests.rb} +1 -5
- data/lib/origen_app_generators/origen_infrastructure/app_generator_plugin.rb +6 -8
- data/lib/origen_app_generators/plugin.rb +4 -7
- data/lib/origen_app_generators/test_engineering/common.rb +29 -0
- data/lib/origen_app_generators/test_engineering/stand_alone_application.rb +9 -181
- data/lib/origen_app_generators/test_engineering/test_block.rb +4 -105
- data/templates/app_generators/application/Gemfile +12 -2
- data/templates/app_generators/application/{lib → app/blocks}/top_level.rb +1 -1
- data/templates/app_generators/application/app/lib/module.rb +6 -0
- data/templates/app_generators/application/{templates → app/templates}/web/index.md.erb +0 -0
- data/templates/app_generators/application/{templates → app/templates}/web/layouts/_basic.html.erb +0 -0
- data/templates/app_generators/application/{templates → app/templates}/web/partials/_navbar.html.erb +0 -0
- data/templates/app_generators/application/{templates → app/templates}/web/release_notes.md.erb +0 -0
- data/templates/app_generators/application/config/application.rb +51 -55
- data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/application.rb +0 -0
- data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/base.rb +0 -0
- data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/module.rb +0 -0
- data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/plugin.rb +0 -0
- data/templates/app_generators/origen_infrastructure/app_generator_plugin/config/load_generators.rb +1 -1
- data/templates/app_generators/plugin/Gemfile +3 -2
- data/templates/app_generators/plugin/{templates → app/templates}/web/index.md.erb +0 -0
- data/templates/app_generators/plugin/{templates → app/templates}/web/partials/_navbar_external.html.erb +0 -0
- data/templates/app_generators/plugin/{templates → app/templates}/web/partials/_navbar_internal.html.erb +0 -0
- data/templates/app_generators/plugin/gemspec.rb +4 -3
- data/templates/app_generators/test_engineering/{stand_alone_application/environment → environment}/j750.rb +0 -0
- data/templates/app_generators/test_engineering/{stand_alone_application/environment → environment}/uflex.rb +0 -0
- data/templates/app_generators/test_engineering/{stand_alone_application/environment → environment}/v93k.rb +0 -0
- data/templates/app_generators/test_engineering/stand_alone_application/.keep +0 -0
- data/templates/app_generators/test_engineering/test_block/.keep +0 -0
- metadata +25 -47
- data/bin/fix_my_workspace +0 -100
- data/lib/origen_app_generators/sub_block_parser.rb +0 -81
- data/lib/tasks/app_generators.rake +0 -6
- data/templates/app_generators/application/lib/app.rake +0 -6
- data/templates/app_generators/application/lib/module.rb +0 -22
- data/templates/app_generators/plugin/lib/README +0 -4
- data/templates/app_generators/plugin/lib_dev/README +0 -5
- data/templates/app_generators/test_engineering/stand_alone_application/Gemfile +0 -23
- data/templates/app_generators/test_engineering/stand_alone_application/environment/jlink.rb +0 -1
- data/templates/app_generators/test_engineering/stand_alone_application/lib/ip_block.rb +0 -23
- data/templates/app_generators/test_engineering/stand_alone_application/lib/ip_block_controller.rb +0 -5
- data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level.rb +0 -33
- data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level_controller.rb +0 -21
- data/templates/app_generators/test_engineering/stand_alone_application/pattern/example.rb +0 -4
- data/templates/app_generators/test_engineering/stand_alone_application/target/top_level.rb +0 -4
- data/templates/app_generators/test_engineering/test_block/environment/j750.rb +0 -2
- data/templates/app_generators/test_engineering/test_block/environment/ultraflex.rb +0 -2
- data/templates/app_generators/test_engineering/test_block/environment/v93k.rb +0 -2
- data/templates/app_generators/test_engineering/test_block/lib/controller.rb +0 -12
- data/templates/app_generators/test_engineering/test_block/lib/interface.rb +0 -21
- data/templates/app_generators/test_engineering/test_block/lib/model.rb +0 -18
- data/templates/app_generators/test_engineering/test_block/lib_dev/dut.rb +0 -27
- data/templates/app_generators/test_engineering/test_block/lib_dev/dut_controller.rb +0 -26
- data/templates/app_generators/test_engineering/test_block/pattern/example.rb +0 -5
- data/templates/app_generators/test_engineering/test_block/program/prb1.rb +0 -11
- data/templates/app_generators/test_engineering/test_block/target/default.rb +0 -2
@@ -2,6 +2,8 @@ module OrigenAppGenerators
|
|
2
2
|
module TestEngineering
|
3
3
|
# Generates a generic plugin shell
|
4
4
|
class TestBlock < Plugin
|
5
|
+
include Common
|
6
|
+
|
5
7
|
desc 'An IP test module intended to plugin into a top-level (SoC) application'
|
6
8
|
|
7
9
|
def initialize(*args)
|
@@ -13,8 +15,6 @@ module OrigenAppGenerators
|
|
13
15
|
# The methods to get the common user input that applies to all applications will
|
14
16
|
# get called at the start automatically, you have a chance here to ask any additional
|
15
17
|
# questions that are specific to the type of application being generated
|
16
|
-
get_ip_names
|
17
|
-
get_sub_block_name
|
18
18
|
end
|
19
19
|
|
20
20
|
def generate_files
|
@@ -25,72 +25,15 @@ module OrigenAppGenerators
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def final_modifications
|
28
|
-
prepend_to_file "lib/#{@name}.rb", "require 'origen_testers'\n"
|
29
|
-
# Add require line
|
30
|
-
doc_helpers = /gem 'origen_doc_helpers'/
|
31
|
-
inject_into_file 'Gemfile', "\ngem 'origen_jtag'\ngem 'origen_arm_debug'\n",
|
32
|
-
after: doc_helpers
|
28
|
+
prepend_to_file "app/lib/#{@name}.rb", "require 'origen_testers'\n"
|
33
29
|
end
|
34
30
|
|
35
31
|
def conclude
|
36
32
|
puts "New test module created at: #{destination_root}"
|
37
|
-
puts
|
38
|
-
puts 'Generate an example pattern by running "origen g example"'
|
39
33
|
end
|
40
34
|
|
41
35
|
protected
|
42
36
|
|
43
|
-
def get_ip_names
|
44
|
-
puts
|
45
|
-
puts 'NAME THE IP BLOCKS THAT THIS MODULE WILL SUPPORT'
|
46
|
-
puts
|
47
|
-
puts "You don't need to name them all up front, but you must declare at least one."
|
48
|
-
puts 'We recommend that you use the official name(s) for the IP(s) as used by your design team.'
|
49
|
-
puts 'Separate multiple names with a comma: FLASH_C40_512K, FLASH_C40_2M'
|
50
|
-
puts
|
51
|
-
|
52
|
-
valid = false
|
53
|
-
until valid
|
54
|
-
@ip_names = get_text(single: true).strip.split(',').map do |name|
|
55
|
-
n = name.strip.symbolize.to_s.upcase
|
56
|
-
unless n.empty?
|
57
|
-
n
|
58
|
-
end
|
59
|
-
end.compact
|
60
|
-
unless @ip_names.empty?
|
61
|
-
# Should we check anything here?
|
62
|
-
valid = true
|
63
|
-
end
|
64
|
-
end
|
65
|
-
@ip_names
|
66
|
-
end
|
67
|
-
|
68
|
-
def get_sub_block_name
|
69
|
-
puts
|
70
|
-
puts "WHAT SHOULD BE THE PATH TO #{@ip_names.first} WHEN IT IS INSTANTIATED IN AN SOC?"
|
71
|
-
puts
|
72
|
-
puts 'Your IP(s) will be instantiated by a top-level (SoC) model, at which point it should be given a generic nickname'
|
73
|
-
puts 'that will provide an easy way to access it.'
|
74
|
-
puts 'For example, if you had an IP model for an NVM block, the IP name might be "FLASH_C40_512K_128K", but when it is'
|
75
|
-
puts 'instantiated it would be given the name "flash", allowing it be easily accessed as "dut.flash".'
|
76
|
-
puts
|
77
|
-
|
78
|
-
valid = false
|
79
|
-
until valid
|
80
|
-
@sub_block_name = get_text(single: true).strip.split(',').map do |name|
|
81
|
-
n = name.strip.symbolize.to_s.downcase
|
82
|
-
unless n.empty?
|
83
|
-
n
|
84
|
-
end
|
85
|
-
end.compact
|
86
|
-
unless @sub_block_name.empty?
|
87
|
-
# Should we check anything here?
|
88
|
-
valid = true
|
89
|
-
end
|
90
|
-
end
|
91
|
-
@sub_block_name = @sub_block_name.first
|
92
|
-
end
|
93
|
-
|
94
37
|
# Defines the filelist for the generator, the default list is inherited from the
|
95
38
|
# parent class (Plugin).
|
96
39
|
# The filelist can contain references to generate files, directories or symlinks in the
|
@@ -109,51 +52,7 @@ module OrigenAppGenerators
|
|
109
52
|
# Additional files can be added or removed from the filelist as shown below.
|
110
53
|
def filelist
|
111
54
|
@filelist ||= begin
|
112
|
-
list = super # Always pick up the parent list
|
113
|
-
# Example of how to remove a file from the parent list
|
114
|
-
list.delete(:target_debug)
|
115
|
-
list.delete(:target_production)
|
116
|
-
# Example of how to add a file, in this case the file will be compiled and copied to
|
117
|
-
# the same location in the new app
|
118
|
-
list[:target_default] = { source: 'target/default.rb' }
|
119
|
-
list[:environment_v93k] = { source: 'environment/v93k.rb' }
|
120
|
-
list[:environment_j750] = { source: 'environment/j750.rb' }
|
121
|
-
list[:environment_ultraflex] = { source: 'environment/ultraflex.rb' }
|
122
|
-
list[:program_prb1] = { source: 'program/prb1.rb' }
|
123
|
-
list[:lib_interface] = { source: 'lib/interface.rb', dest: "lib/#{@name}/interface.rb" }
|
124
|
-
# Alternatively specifying a different destination, typically you would do this when
|
125
|
-
# the final location is dynamic
|
126
|
-
# list[:gemspec] = { source: 'gemspec.rb', dest: "#{@name}.gemspec" }
|
127
|
-
# Example of how to create a directory
|
128
|
-
list[:pattern_dir] = { dest: 'pattern', type: :directory }
|
129
|
-
# Example of how to create a symlink
|
130
|
-
list[:environment_default] = { source: 'ultraflex.rb', # Relative to the file being linked to
|
131
|
-
dest: 'environment/default.rb', # Relative to destination_root
|
132
|
-
type: :symlink }
|
133
|
-
list[:dev_dut] = { source: 'lib_dev/dut.rb',
|
134
|
-
dest: "lib/#{@name}_dev/dut.rb",
|
135
|
-
options: { class_name: @ip_names.first, sub_block_name: @sub_block_name }
|
136
|
-
}
|
137
|
-
list[:dev_dutc] = { source: 'lib_dev/dut_controller.rb',
|
138
|
-
dest: "lib/#{@name}_dev/dut_controller.rb"
|
139
|
-
}
|
140
|
-
|
141
|
-
@ip_names.each_with_index do |name, i|
|
142
|
-
list["ip_#{i}"] = { source: 'lib/model.rb',
|
143
|
-
dest: "lib/#{@name}/#{name.underscore}.rb",
|
144
|
-
options: { name: name }
|
145
|
-
}
|
146
|
-
|
147
|
-
list["ip_controller_#{i}"] = { source: 'lib/controller.rb',
|
148
|
-
dest: "lib/#{@name}/#{name.underscore}_controller.rb",
|
149
|
-
options: { name: name }
|
150
|
-
}
|
151
|
-
end
|
152
|
-
|
153
|
-
list[:pattern_example] = { source: 'pattern/example.rb',
|
154
|
-
options: { sub_block_name: @sub_block_name }
|
155
|
-
}
|
156
|
-
# Remember to return the final list
|
55
|
+
list = common_filelist(super) # Always pick up the parent list
|
157
56
|
list
|
158
57
|
end
|
159
58
|
end
|
@@ -9,10 +9,20 @@ source 'https://rubygems.org'
|
|
9
9
|
gem 'origen', '>= <%= @latest_origen_version %>'
|
10
10
|
|
11
11
|
gem 'origen_doc_helpers'
|
12
|
+
<% if @development_dependencies -%>
|
13
|
+
<% @development_dependencies.each do |dep| -%>
|
14
|
+
gem <%= dep.map{ |d| "\"#{d}\"" }.join(', ') %>
|
15
|
+
<% end -%>
|
16
|
+
<% end -%>
|
12
17
|
|
13
|
-
gem 'byebug'
|
18
|
+
gem 'byebug', '~>8' # You can remove this version constraint if you don't care about your app
|
19
|
+
# supporting earlier versions of Ruby 2
|
20
|
+
<% if RUBY_VERSION < "2.3.0" -%>
|
14
21
|
|
15
|
-
|
22
|
+
# Lock this version of nokogiri to enable compatibility with Ruby 2.2, if you don't need
|
23
|
+
# that then you can remove this line
|
24
|
+
gem 'nokogiri', '1.8.5'
|
25
|
+
<% end -%>
|
16
26
|
|
17
27
|
# Uncomment these if you want to use a visual debugger (e.g. Visual Studio Code) to debug your app
|
18
28
|
#gem 'ruby-debug-ide'
|
File without changes
|
data/templates/app_generators/application/{templates → app/templates}/web/layouts/_basic.html.erb
RENAMED
File without changes
|
data/templates/app_generators/application/{templates → app/templates}/web/partials/_navbar.html.erb
RENAMED
File without changes
|
data/templates/app_generators/application/{templates → app/templates}/web/release_notes.md.erb
RENAMED
File without changes
|
@@ -1,20 +1,19 @@
|
|
1
1
|
require 'origen'
|
2
2
|
class <%= @namespace %>Application < Origen::Application
|
3
|
-
|
4
3
|
# See http://origen-sdk.org/origen/api/Origen/Application/Configuration.html
|
5
4
|
# for a full list of the configuration options available
|
6
5
|
|
7
6
|
# These attributes should never be changed, the duplication here will be resolved in future
|
8
7
|
# by condensing these attributes that do similar things
|
9
|
-
self.name =
|
10
|
-
self.namespace =
|
11
|
-
config.name =
|
12
|
-
config.initials =
|
8
|
+
self.name = '<%= @name %>'
|
9
|
+
self.namespace = '<%= @namespace %>'
|
10
|
+
config.name = '<%= @name %>'
|
11
|
+
config.initials = '<%= @namespace %>'
|
13
12
|
# Change this to point to the revision control repository for this <%= @type %>
|
14
13
|
<% if @audience == :external -%>
|
15
|
-
#config.rc_url = "ssh://git@github.com:myaccount/<%= @name %>.git"
|
14
|
+
# config.rc_url = "ssh://git@github.com:myaccount/<%= @name %>.git"
|
16
15
|
<% else -%>
|
17
|
-
#config.rc_url = "ssh://git@sw-stash.mycompany.net/myproject/<%= @name %>.git"
|
16
|
+
# config.rc_url = "ssh://git@sw-stash.mycompany.net/myproject/<%= @name %>.git"
|
18
17
|
<% end -%>
|
19
18
|
<% if @audience == :external -%>
|
20
19
|
config.release_externally = true
|
@@ -23,11 +22,11 @@ class <%= @namespace %>Application < Origen::Application
|
|
23
22
|
# To enable deployment of your documentation to a web server (via the 'origen web'
|
24
23
|
# command) fill in these attributes.
|
25
24
|
<% if @audience == :external -%>
|
26
|
-
#config.web_directory =
|
27
|
-
#config.web_domain =
|
25
|
+
# config.web_directory = 'git@github.com:Origen-SDK/Origen-SDK.github.io.git/<%= @name %>'
|
26
|
+
# config.web_domain = 'http://origen-sdk.org/<%= @name %>'
|
28
27
|
<% else -%>
|
29
|
-
#config.web_directory =
|
30
|
-
#config.web_domain =
|
28
|
+
# config.web_directory = '/path/to/server/<%= @name %>'
|
29
|
+
# config.web_domain = 'http://origen.mycompany.net/<%= @name %>'
|
31
30
|
<% end -%>
|
32
31
|
|
33
32
|
# When false Origen will be less strict about checking for some common coding errors,
|
@@ -38,76 +37,74 @@ class <%= @namespace %>Application < Origen::Application
|
|
38
37
|
# See: http://origen-sdk.org/origen/latest/guides/utilities/lint/
|
39
38
|
config.lint_test = {
|
40
39
|
# Require the lint tests to pass before allowing a release to proceed
|
41
|
-
run_on_tag:
|
40
|
+
run_on_tag: true,
|
42
41
|
# Auto correct violations where possible whenever 'origen lint' is run
|
43
|
-
auto_correct: true,
|
44
|
-
# Limit the testing for large legacy applications
|
45
|
-
#level: :easy,
|
42
|
+
auto_correct: true,
|
46
43
|
# Run on these directories/files by default
|
47
|
-
|
44
|
+
files: ['app', 'config/application.rb']
|
48
45
|
}
|
49
46
|
|
50
47
|
config.semantically_version = true
|
51
48
|
|
52
49
|
# An example of how to set application specific LSF parameters
|
53
|
-
#config.lsf.project = "msg.te"
|
54
|
-
|
50
|
+
# config.lsf.project = "msg.te"
|
51
|
+
|
55
52
|
# An example of how to specify a prefix to add to all generated patterns
|
56
|
-
#config.pattern_prefix = "nvm"
|
53
|
+
# config.pattern_prefix = "nvm"
|
57
54
|
|
58
55
|
# An example of how to add header comments to all generated patterns
|
59
|
-
#config.pattern_header do
|
60
|
-
#
|
61
|
-
#end
|
56
|
+
# config.pattern_header do
|
57
|
+
# cc "This is a pattern created by the example origen application"
|
58
|
+
# end
|
62
59
|
|
63
60
|
# By default all generated output will end up in ./output.
|
64
61
|
# Here you can specify an alternative directory entirely, or make it dynamic such that
|
65
|
-
# the output ends up in a setup specific directory.
|
66
|
-
#config.output_directory do
|
67
|
-
#
|
68
|
-
#end
|
62
|
+
# the output ends up in a setup specific directory.
|
63
|
+
# config.output_directory do
|
64
|
+
# "#{Origen.root}/output/#{$dut.class}"
|
65
|
+
# end
|
69
66
|
|
70
67
|
# Similarly for the reference files, generally you want to setup the reference directory
|
71
68
|
# structure to mirror that of your output directory structure.
|
72
|
-
#config.reference_directory do
|
73
|
-
#
|
74
|
-
#end
|
75
|
-
|
69
|
+
# config.reference_directory do
|
70
|
+
# "#{Origen.root}/.ref/#{$dut.class}"
|
71
|
+
# end
|
72
|
+
|
76
73
|
# This will automatically deploy your documentation after every tag
|
77
|
-
#def after_release_email(tag, note, type, selector, options)
|
78
|
-
#
|
79
|
-
#
|
80
|
-
#
|
81
|
-
#
|
82
|
-
#end
|
83
|
-
<% if @validate_release_tests
|
74
|
+
# def after_release_email(tag, note, type, selector, options)
|
75
|
+
# command = "origen web compile --remote --api"
|
76
|
+
# Dir.chdir Origen.root do
|
77
|
+
# system command
|
78
|
+
# end
|
79
|
+
# end
|
80
|
+
<% if @validate_release_tests -%>
|
84
81
|
# Ensure that all tests pass before allowing a release to continue
|
85
82
|
def validate_release
|
86
83
|
if <%= Array(@validate_release_tests).map { |t| "!system('#{t}')" }.join(' || ') %>
|
87
84
|
puts "Sorry but you can't release with failing tests, please fix them and try again."
|
88
85
|
exit 1
|
89
86
|
else
|
90
|
-
puts
|
87
|
+
puts 'All tests passing, proceeding with release process!'
|
91
88
|
end
|
92
89
|
end
|
93
|
-
<% else
|
90
|
+
<% else -%>
|
94
91
|
# Ensure that all tests pass before allowing a release to continue
|
95
|
-
#def validate_release
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
99
|
-
#
|
100
|
-
#
|
101
|
-
#
|
102
|
-
#end
|
92
|
+
# def validate_release
|
93
|
+
# if !system('origen specs') || !system('origen examples')
|
94
|
+
# puts "Sorry but you can't release with failing tests, please fix them and try again."
|
95
|
+
# exit 1
|
96
|
+
# else
|
97
|
+
# puts 'All tests passing, proceeding with release process!'
|
98
|
+
# end
|
99
|
+
# end
|
103
100
|
<% end -%>
|
104
101
|
|
105
102
|
# To enabled source-less pattern generation create a class (for example PatternDispatcher)
|
106
103
|
# to generate the pattern. This should return false if the requested pattern has been
|
107
104
|
# dispatched, otherwise Origen will proceed with looking up a pattern source as normal.
|
108
|
-
#def before_pattern_lookup(requested_pattern)
|
109
|
-
#
|
110
|
-
#end
|
105
|
+
# def before_pattern_lookup(requested_pattern)
|
106
|
+
# PatternDispatcher.new.dispatch_or_return(requested_pattern)
|
107
|
+
# end
|
111
108
|
|
112
109
|
# If you use pattern iterators you may come across the case where you request a pattern
|
113
110
|
# like this:
|
@@ -115,11 +112,10 @@ class <%= @namespace %>Application < Origen::Application
|
|
115
112
|
#
|
116
113
|
# However it cannot be found by Origen since the pattern name is actually example_pat_bx.atp
|
117
114
|
# In the case where the pattern cannot be found Origen will pass the name to this translator
|
118
|
-
# if it exists, and here you can make any substitutions to help Origen find the file you
|
115
|
+
# if it exists, and here you can make any substitutions to help Origen find the file you
|
119
116
|
# want. In this example any instances of _b\d, where \d means a number, are replaced by
|
120
117
|
# _bx.
|
121
|
-
#config.pattern_name_translator do |name|
|
122
|
-
#
|
123
|
-
#end
|
124
|
-
|
118
|
+
# config.pattern_name_translator do |name|
|
119
|
+
# name.gsub(/_b\d/, "_bx")
|
120
|
+
# end
|
125
121
|
end
|
File without changes
|
data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/base.rb
RENAMED
File without changes
|
data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/module.rb
RENAMED
File without changes
|
data/templates/app_generators/origen_infrastructure/app_generator_plugin/{lib → app/lib}/plugin.rb
RENAMED
File without changes
|
data/templates/app_generators/origen_infrastructure/app_generator_plugin/config/load_generators.rb
CHANGED
@@ -2,5 +2,5 @@
|
|
2
2
|
# 'origen new' command, it must not be removed or modified
|
3
3
|
require 'origen_app_generators'
|
4
4
|
require "<%= @name %>"
|
5
|
-
template_dir = File.expand_path('../../templates/app_generators', __FILE__)
|
5
|
+
template_dir = File.expand_path('../../app/templates/app_generators', __FILE__)
|
6
6
|
OrigenAppGenerators.add_generators(<%= @namespace %>::AVAILABLE, template_dir: template_dir)
|
@@ -13,10 +13,11 @@ source 'https://rubygems.org'
|
|
13
13
|
# your application's test coverage
|
14
14
|
gem 'coveralls', require: false
|
15
15
|
<% end -%>
|
16
|
-
gem 'byebug', '
|
16
|
+
gem 'byebug', '~>8' # You can remove this version constraint if you don't care about your app
|
17
|
+
# supporting earlier versions of Ruby 2
|
17
18
|
gem 'ripper-tags'
|
18
19
|
gem 'origen_doc_helpers'
|
19
|
-
|
20
|
+
|
20
21
|
# Uncomment these if you want to use a visual debugger (e.g. Visual Studio Code) to debug your app
|
21
22
|
#gem 'ruby-debug-ide'
|
22
23
|
#gem 'debase'
|
File without changes
|
File without changes
|
File without changes
|
@@ -21,11 +21,12 @@ Gem::Specification.new do |spec|
|
|
21
21
|
# packaged gem, the default should hit everything in most cases but this will
|
22
22
|
# need to be added to if you have any custom directories
|
23
23
|
spec.files = Dir["lib/<%= @name %>.rb", "lib/<%= @name %>/**/*.rb", "templates/**/*", "config/**/*.rb",
|
24
|
-
"bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb",
|
25
|
-
"
|
24
|
+
"bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb", "program/**/*.rb",
|
25
|
+
"app/lib/**/*.rb", "app/templates/**/*",
|
26
|
+
"app/patterns/**/*.rb", "app/flows/**/*.rb", "app/blocks/**/*.rb"
|
26
27
|
]
|
27
28
|
spec.executables = []
|
28
|
-
spec.require_paths = ["lib"]
|
29
|
+
spec.require_paths = ["lib", "app/lib"]
|
29
30
|
|
30
31
|
# Add any gems that your plugin needs to run within a host application
|
31
32
|
spec.add_runtime_dependency "origen", ">= <%= @latest_origen_version %>"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
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:
|
4
|
+
version: 2.0.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:
|
11
|
+
date: 2019-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: origen
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.40.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.40.2
|
27
27
|
description:
|
28
28
|
email:
|
29
29
|
- stephen.f.mcginty@gmail.com
|
@@ -32,7 +32,6 @@ extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- bin/boot.rb
|
35
|
-
- bin/fix_my_workspace
|
36
35
|
- config/application.rb
|
37
36
|
- config/boot.rb
|
38
37
|
- config/commands.rb
|
@@ -44,19 +43,24 @@ files:
|
|
44
43
|
- lib/origen_app_generators/empty_application.rb
|
45
44
|
- lib/origen_app_generators/empty_plugin.rb
|
46
45
|
- lib/origen_app_generators/new.rb
|
46
|
+
- lib/origen_app_generators/new_app_tests.rb
|
47
47
|
- lib/origen_app_generators/origen_infrastructure/app_generator_plugin.rb
|
48
48
|
- lib/origen_app_generators/plugin.rb
|
49
|
-
- lib/origen_app_generators/
|
49
|
+
- lib/origen_app_generators/test_engineering/common.rb
|
50
50
|
- lib/origen_app_generators/test_engineering/stand_alone_application.rb
|
51
51
|
- lib/origen_app_generators/test_engineering/test_block.rb
|
52
|
-
- lib/tasks/app_generators.rake
|
53
|
-
- lib/tasks/new_app_tests.rake
|
54
52
|
- templates/app_generators/application/.gitignore
|
55
53
|
- templates/app_generators/application/.irbrc
|
56
54
|
- templates/app_generators/application/.rspec
|
57
55
|
- templates/app_generators/application/.travis.yml
|
58
56
|
- templates/app_generators/application/Gemfile
|
59
57
|
- templates/app_generators/application/Rakefile
|
58
|
+
- templates/app_generators/application/app/blocks/top_level.rb
|
59
|
+
- templates/app_generators/application/app/lib/module.rb
|
60
|
+
- templates/app_generators/application/app/templates/web/index.md.erb
|
61
|
+
- templates/app_generators/application/app/templates/web/layouts/_basic.html.erb
|
62
|
+
- templates/app_generators/application/app/templates/web/partials/_navbar.html.erb
|
63
|
+
- templates/app_generators/application/app/templates/web/release_notes.md.erb
|
60
64
|
- templates/app_generators/application/config/application.rb
|
61
65
|
- templates/app_generators/application/config/boot.rb
|
62
66
|
- templates/app_generators/application/config/commands.rb
|
@@ -65,56 +69,30 @@ files:
|
|
65
69
|
- templates/app_generators/application/config/version.rb
|
66
70
|
- templates/app_generators/application/doc/history
|
67
71
|
- templates/app_generators/application/dot_keep
|
68
|
-
- templates/app_generators/application/lib/app.rake
|
69
|
-
- templates/app_generators/application/lib/module.rb
|
70
|
-
- templates/app_generators/application/lib/top_level.rb
|
71
72
|
- templates/app_generators/application/origen_core_session
|
72
73
|
- templates/app_generators/application/spec/spec_helper.rb
|
73
74
|
- templates/app_generators/application/target/debug.rb
|
74
75
|
- templates/app_generators/application/target/default.rb
|
75
76
|
- templates/app_generators/application/target/production.rb
|
76
|
-
- templates/app_generators/application/templates/web/index.md.erb
|
77
|
-
- templates/app_generators/application/templates/web/layouts/_basic.html.erb
|
78
|
-
- templates/app_generators/application/templates/web/partials/_navbar.html.erb
|
79
|
-
- templates/app_generators/application/templates/web/release_notes.md.erb
|
80
77
|
- templates/app_generators/new/generator.rb
|
81
78
|
- templates/app_generators/new/info.md.erb
|
79
|
+
- templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/application.rb
|
80
|
+
- templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/base.rb
|
81
|
+
- templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/module.rb
|
82
|
+
- templates/app_generators/origen_infrastructure/app_generator_plugin/app/lib/plugin.rb
|
82
83
|
- templates/app_generators/origen_infrastructure/app_generator_plugin/config/load_generators.rb
|
83
|
-
- templates/app_generators/origen_infrastructure/app_generator_plugin/lib/application.rb
|
84
|
-
- templates/app_generators/origen_infrastructure/app_generator_plugin/lib/base.rb
|
85
|
-
- templates/app_generators/origen_infrastructure/app_generator_plugin/lib/module.rb
|
86
|
-
- templates/app_generators/origen_infrastructure/app_generator_plugin/lib/plugin.rb
|
87
84
|
- templates/app_generators/plugin/Gemfile
|
88
85
|
- templates/app_generators/plugin/Rakefile
|
86
|
+
- templates/app_generators/plugin/app/templates/web/index.md.erb
|
87
|
+
- templates/app_generators/plugin/app/templates/web/partials/_navbar_external.html.erb
|
88
|
+
- templates/app_generators/plugin/app/templates/web/partials/_navbar_internal.html.erb
|
89
89
|
- templates/app_generators/plugin/config/boot.rb
|
90
90
|
- templates/app_generators/plugin/gemspec.rb
|
91
|
-
- templates/app_generators/
|
92
|
-
- templates/app_generators/
|
93
|
-
- templates/app_generators/
|
94
|
-
- templates/app_generators/
|
95
|
-
- templates/app_generators/
|
96
|
-
- templates/app_generators/test_engineering/stand_alone_application/Gemfile
|
97
|
-
- templates/app_generators/test_engineering/stand_alone_application/environment/j750.rb
|
98
|
-
- templates/app_generators/test_engineering/stand_alone_application/environment/jlink.rb
|
99
|
-
- templates/app_generators/test_engineering/stand_alone_application/environment/uflex.rb
|
100
|
-
- templates/app_generators/test_engineering/stand_alone_application/environment/v93k.rb
|
101
|
-
- templates/app_generators/test_engineering/stand_alone_application/lib/ip_block.rb
|
102
|
-
- templates/app_generators/test_engineering/stand_alone_application/lib/ip_block_controller.rb
|
103
|
-
- templates/app_generators/test_engineering/stand_alone_application/lib/top_level.rb
|
104
|
-
- templates/app_generators/test_engineering/stand_alone_application/lib/top_level_controller.rb
|
105
|
-
- templates/app_generators/test_engineering/stand_alone_application/pattern/example.rb
|
106
|
-
- templates/app_generators/test_engineering/stand_alone_application/target/top_level.rb
|
107
|
-
- templates/app_generators/test_engineering/test_block/environment/j750.rb
|
108
|
-
- templates/app_generators/test_engineering/test_block/environment/ultraflex.rb
|
109
|
-
- templates/app_generators/test_engineering/test_block/environment/v93k.rb
|
110
|
-
- templates/app_generators/test_engineering/test_block/lib/controller.rb
|
111
|
-
- templates/app_generators/test_engineering/test_block/lib/interface.rb
|
112
|
-
- templates/app_generators/test_engineering/test_block/lib/model.rb
|
113
|
-
- templates/app_generators/test_engineering/test_block/lib_dev/dut.rb
|
114
|
-
- templates/app_generators/test_engineering/test_block/lib_dev/dut_controller.rb
|
115
|
-
- templates/app_generators/test_engineering/test_block/pattern/example.rb
|
116
|
-
- templates/app_generators/test_engineering/test_block/program/prb1.rb
|
117
|
-
- templates/app_generators/test_engineering/test_block/target/default.rb
|
91
|
+
- templates/app_generators/test_engineering/environment/j750.rb
|
92
|
+
- templates/app_generators/test_engineering/environment/uflex.rb
|
93
|
+
- templates/app_generators/test_engineering/environment/v93k.rb
|
94
|
+
- templates/app_generators/test_engineering/stand_alone_application/.keep
|
95
|
+
- templates/app_generators/test_engineering/test_block/.keep
|
118
96
|
homepage: http://origen-sdk.org/origen_app_generators
|
119
97
|
licenses:
|
120
98
|
- MIT
|
@@ -135,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
113
|
version: 1.8.11
|
136
114
|
requirements: []
|
137
115
|
rubyforge_project:
|
138
|
-
rubygems_version: 2.
|
116
|
+
rubygems_version: 2.7.7
|
139
117
|
signing_key:
|
140
118
|
specification_version: 4
|
141
119
|
summary: Origen application generators
|