origen_app_generators 0.0.3 → 0.1.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 +4 -4
- data/config/commands.rb +13 -25
- data/config/version.rb +2 -2
- data/lib/origen_app_generators.rb +22 -6
- data/lib/origen_app_generators/application.rb +21 -14
- data/lib/origen_app_generators/base.rb +18 -3
- data/lib/origen_app_generators/plugin.rb +17 -2
- data/lib/origen_app_generators/sub_block_parser.rb +81 -0
- data/lib/origen_app_generators/test_engineering/stand_alone_application.rb +232 -0
- data/lib/origen_app_generators/test_engineering/{generic_test_block.rb → test_block.rb} +2 -2
- data/lib/tasks/app_generators.rake +42 -3
- data/lib/tasks/boot.rb +1 -1
- data/templates/app_generators/application/Gemfile +6 -7
- data/templates/app_generators/application/Rakefile +0 -4
- data/templates/app_generators/application/config/application.rb +8 -11
- data/templates/app_generators/application/config/{environment.rb → boot.rb} +0 -0
- data/templates/app_generators/application/config/commands.rb +11 -13
- data/templates/app_generators/application/origen_core_session +2 -0
- data/templates/app_generators/plugin/Gemfile +9 -0
- data/templates/app_generators/plugin/Rakefile +9 -0
- data/templates/app_generators/plugin/config/boot.rb +17 -0
- data/templates/app_generators/test_engineering/stand_alone_application/Gemfile +14 -0
- data/templates/app_generators/test_engineering/stand_alone_application/environment/j750.rb +1 -0
- data/templates/app_generators/test_engineering/stand_alone_application/environment/jlink.rb +1 -0
- data/templates/app_generators/test_engineering/stand_alone_application/environment/uflex.rb +1 -0
- data/templates/app_generators/test_engineering/stand_alone_application/environment/v93k.rb +1 -0
- data/templates/app_generators/test_engineering/stand_alone_application/lib/ip_block.rb +23 -0
- data/templates/app_generators/test_engineering/stand_alone_application/lib/ip_block_controller.rb +5 -0
- data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level.rb +33 -0
- data/templates/app_generators/test_engineering/stand_alone_application/lib/top_level_controller.rb +21 -0
- data/templates/app_generators/test_engineering/stand_alone_application/pattern/example.rb +4 -0
- data/templates/app_generators/test_engineering/stand_alone_application/target/top_level.rb +8 -0
- data/templates/app_generators/test_engineering/{generic_test_block → test_block}/lib/interface.rb +0 -0
- data/templates/app_generators/test_engineering/{generic_test_block → test_block}/program/prb1.rb +0 -0
- data/templates/app_generators/test_engineering/{generic_test_block → test_block}/target/j750.rb +0 -0
- data/templates/app_generators/test_engineering/{generic_test_block → test_block}/target/ultraflex.rb +0 -0
- data/templates/app_generators/test_engineering/{generic_test_block → test_block}/target/v93k.rb +0 -0
- data/templates/web/origen_app_generators/test_engineering/generic_stand_alone_application.md.erb +9 -0
- metadata +28 -41
- data/templates/app_generators/application/config/users.rb +0 -29
- data/templates/app_generators/application/templates/web/archive.md.erb +0 -11
- data/templates/app_generators/application/templates/web/contact.md.erb +0 -36
- data/templates/app_generators/application/templates/web/docs/environment/definitions.md.erb +0 -17
- data/templates/app_generators/application/templates/web/docs/environment/installation.md.erb +0 -22
- data/templates/app_generators/application/templates/web/docs/environment/introduction.md.erb +0 -5
- data/templates/app_generators/application/templates/web/index.md.erb +0 -12
- data/templates/app_generators/application/templates/web/layouts/_basic.html.erb +0 -14
- data/templates/app_generators/application/templates/web/layouts/_doc.html.erb +0 -35
- data/templates/app_generators/application/templates/web/partials/_navbar.html.erb +0 -23
- data/templates/app_generators/application/templates/web/references.md.erb +0 -39
- data/templates/app_generators/application/templates/web/release_notes.md.erb +0 -5
- data/templates/app_generators/plugin/config/development.rb +0 -12
- data/templates/app_generators/plugin/templates/web/index.md.erb +0 -60
- data/templates/app_generators/plugin/templates/web/partials/_navbar.html.erb +0 -22
- data/templates/web/_history.md +0 -166
- data/templates/web/archive.md.erb +0 -11
- data/templates/web/contact.md.erb +0 -36
- data/templates/web/docs/developers/creating.md.erb +0 -290
- data/templates/web/docs/environment/installation.md.erb +0 -12
- data/templates/web/docs/environment/introduction.md.erb +0 -10
- data/templates/web/example.md.erb +0 -73
- data/templates/web/index.md.erb +0 -48
- data/templates/web/layouts/_basic.html.erb +0 -18
- data/templates/web/layouts/_doc.html.erb +0 -37
- data/templates/web/origen_app_generators/application.md.erb +0 -116
- data/templates/web/origen_app_generators/plugin.md.erb +0 -29
- data/templates/web/origen_app_generators/test_engineering/generic_test_block.md.erb +0 -16
- data/templates/web/partials/_navbar.html.erb +0 -22
- data/templates/web/release_notes.md.erb +0 -5
@@ -1,29 +0,0 @@
|
|
1
|
-
# This file defines the users associated with your project, it is basically the
|
2
|
-
# mailing list for release notes.
|
3
|
-
#
|
4
|
-
# You can split your users into "admin" and "user" groups, the main difference
|
5
|
-
# between the two is that admin users will get all tag emails, users will get
|
6
|
-
# emails on external/official releases only.
|
7
|
-
#
|
8
|
-
# Users are also prohibited from running the "origen rc tag" command, but this is
|
9
|
-
# really just to prevent a casual user from executing it inadvertently and is
|
10
|
-
# not intended to be a serious security gate.
|
11
|
-
module Origen
|
12
|
-
module Users
|
13
|
-
def users
|
14
|
-
@users ||= [
|
15
|
-
|
16
|
-
# Admins - Notified on every tag
|
17
|
-
User.new("<%= User.current.name %>", "<%= User.current.id %>", :admin),
|
18
|
-
|
19
|
-
# Users - Notified on official release tags only
|
20
|
-
#User.new("Stephen McGinty", "r49409"),
|
21
|
-
# The r-number attribute can be anything that can be prefixed to an
|
22
|
-
# @freescale.com email address, so you can add mailing list references
|
23
|
-
# as well like this:
|
24
|
-
#User.new("Origen Users", "origen"), # The Origen mailing list
|
25
|
-
|
26
|
-
]
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
% render "layouts/basic.html", tab: :archive do
|
2
|
-
|
3
|
-
## Archive
|
4
|
-
|
5
|
-
Documentation from previous releases is available via the links below:
|
6
|
-
|
7
|
-
% Origen.app.versions.reverse_each do |version|
|
8
|
-
* [<%= version %>](<%= Origen.app.config.web_domain %>/<%= version.gsub(".", "_") %>)
|
9
|
-
% end
|
10
|
-
|
11
|
-
% end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
% render "layouts/basic.html", tab: :contact do
|
2
|
-
|
3
|
-
## Contact Us
|
4
|
-
|
5
|
-
The following engineers can be contacted about this application:
|
6
|
-
|
7
|
-
% Origen.app.developers.each do |user|
|
8
|
-
* [<%= user.name %>](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\<%= user.r_number %>)
|
9
|
-
% end
|
10
|
-
|
11
|
-
%# An example of how to manually write a more detailed contact page:
|
12
|
-
%#Please use PDM For any bug reports or change/feature requests:
|
13
|
-
%#
|
14
|
-
%#* [C90TFS_NVM_tester on PDM](http://designpdm.freescale.net/Agile/PLMServlet?fromPCClient=true&module=PartFamilyHandler&requestUrl=module%3DPartFamilyHandler%26opcode%3DdisplayObject%26classid%3D2000004409%26objid%3D17718323%26tabid%3D2%26)
|
15
|
-
%#
|
16
|
-
%#For test related issues you can contact:
|
17
|
-
%#
|
18
|
-
%#* [Stephen McGinty](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\r49409)
|
19
|
-
%#* [Thao Huynh](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\R6AANF)
|
20
|
-
%#
|
21
|
-
%#For product/yield issues contact:
|
22
|
-
%#
|
23
|
-
%#* [Andrew Hardell](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\R12635)
|
24
|
-
%#* [Eddie Lepore](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\B06626)
|
25
|
-
%#
|
26
|
-
%#The manager of this project is:
|
27
|
-
%#
|
28
|
-
%#* [Wendy Malloch](http://freeshare.freescale.net:2222/my/Person.aspx?accountname=fsl\TTZ231)
|
29
|
-
%#
|
30
|
-
%#
|
31
|
-
%#Finally if you are not sure who to contact, or if your question may have device/reliability
|
32
|
-
%#implications, then you can use the Split Gate Flash Test and Reliability mailing list:
|
33
|
-
%#
|
34
|
-
%#* [Email SGFTANDR](mailto:SGFTANDR@freescale.com)
|
35
|
-
|
36
|
-
% end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
% render "../../layouts/doc.html" do
|
2
|
-
|
3
|
-
%# Add any new entries anywhere in this list, it will get sorted into
|
4
|
-
%# alphabetical order during compilation:
|
5
|
-
%
|
6
|
-
% terms = {
|
7
|
-
% "Origen" => "A general purpose semiconductor engineering framework that uses the Ruby programming language, read more at http://origen.freescale.net",
|
8
|
-
% "Application" => "The generic name given to a project that uses Origen",
|
9
|
-
% }
|
10
|
-
|
11
|
-
| Term or Acronym | Definition
|
12
|
-
|:----------------|:----------
|
13
|
-
% terms.sort.each do |term|
|
14
|
-
| <%= term[0] %> | <%= term[1] %>
|
15
|
-
% end
|
16
|
-
|
17
|
-
% end
|
data/templates/app_generators/application/templates/web/docs/environment/installation.md.erb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
% render "../../layouts/doc.html" do
|
2
|
-
|
3
|
-
Follow the steps below to setup a new environment.
|
4
|
-
|
5
|
-
#### 1. Install Origen
|
6
|
-
|
7
|
-
Follow these instructions to install Origen: [How to Install Origen](http://origen.freescale.net/origen/latest/guides/starting/installing)
|
8
|
-
|
9
|
-
#### 2. Create the application workspace
|
10
|
-
|
11
|
-
This workspace must be situated outside of the Origen workspace that you have just created.
|
12
|
-
|
13
|
-
Execute the following commands:
|
14
|
-
|
15
|
-
~~~
|
16
|
-
mkdir <%= Origen.app.name %>
|
17
|
-
cd <%= Origen.app.name %>
|
18
|
-
dssc setvault <%= Origen.config.vault %> .
|
19
|
-
dssc pop -rec -uni -get -force -ver <%= Origen.app.version %> .
|
20
|
-
~~~
|
21
|
-
|
22
|
-
% end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
% render "layouts/basic.html" do
|
2
|
-
|
3
|
-
%# HTML tags can be embedded in mark down files if you want to do specific custom
|
4
|
-
%# formatting like this, but in most cases that is not required.
|
5
|
-
<h1><%= Origen.app.namespace %> <span style="font-size: 14px">(<%= Origen.app.version %>)</span></h1>
|
6
|
-
|
7
|
-
### Introduction
|
8
|
-
|
9
|
-
Use this page to give a brief overview of what your application does, put the detail
|
10
|
-
in the docs section.
|
11
|
-
|
12
|
-
% end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: bootstrap
|
3
|
-
title: <%= options[:title] || Origen.app.namespace %>
|
4
|
-
---
|
5
|
-
<%= render "templates/web/partials/navbar.html", tab: options[:tab] %>
|
6
|
-
|
7
|
-
<div class="row">
|
8
|
-
%# The markdown attribute is important if you are going to include content written
|
9
|
-
%# in markdown, without this is will be included verbatim
|
10
|
-
<div class="span12" markdown="1">
|
11
|
-
<%= yield %>
|
12
|
-
|
13
|
-
</div>
|
14
|
-
</div>
|
@@ -1,35 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: bootstrap
|
3
|
-
title: <%= options[:title] || "#{Origen.app.namespace} - Docs" %>
|
4
|
-
---
|
5
|
-
<%= render "templates/web/partials/navbar.html", tab: :docs %>
|
6
|
-
% s = {}
|
7
|
-
|
8
|
-
%# This creates the index on the left of your doc pages
|
9
|
-
%#
|
10
|
-
%# Naming of the keys is very important and must be of the form:
|
11
|
-
%# <section>_<page> with no other underscores
|
12
|
-
%# Origen will then look for the corresponding page in:
|
13
|
-
%# templates/web/docs/<section>/<page>.md.erb
|
14
|
-
%#
|
15
|
-
%# See here for more info: http://origen.freescale.net/doc_helpers/latest/examples/searchable/intro/
|
16
|
-
|
17
|
-
% s["Environment"] = {
|
18
|
-
% environment_introduction: "Introduction",
|
19
|
-
% environment_installation: "Installation",
|
20
|
-
% environment_definitions: "Definitions and Acronyms",
|
21
|
-
% }
|
22
|
-
%
|
23
|
-
%# Define additional sections as required, e.g.
|
24
|
-
%# s["Registers"] = {
|
25
|
-
%# registers_map: "Register Map",
|
26
|
-
%# }
|
27
|
-
|
28
|
-
|
29
|
-
% render "doc_helpers/searchable.html", options.merge(:index => s) do
|
30
|
-
|
31
|
-
<%= yield %>
|
32
|
-
|
33
|
-
<%= yammer_comments %>
|
34
|
-
|
35
|
-
% end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
<div class="navbar navbar-inverse navbar-fixed-top">
|
2
|
-
<div class="navbar-inner">
|
3
|
-
<div class="container">
|
4
|
-
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
5
|
-
<span class="icon-bar"></span>
|
6
|
-
<span class="icon-bar"></span>
|
7
|
-
<span class="icon-bar"></span>
|
8
|
-
</a>
|
9
|
-
<a class="brand" href="<%= path "/" %>">Home</a>
|
10
|
-
<div class="nav-collapse collapse">
|
11
|
-
<ul class="nav">
|
12
|
-
<li class="<%= options[:tab] == :docs ? 'active' : '' %>"><a href="<%= path("/docs/environment/introduction") %>">Docs</a></li>
|
13
|
-
<li class="<%= options[:tab] == :api ? 'active' : '' %>"><a href="<%= path "/api/" %>">API</a></li>
|
14
|
-
<li class="<%= options[:tab] == :references ? 'active' : '' %>"><a href="<%= path "/references" %>">References</a></li>
|
15
|
-
<li class="<%= options[:tab] == :archive ? 'active' : '' %>"><a href="<%= path "/archive" %>">Archive</a></li>
|
16
|
-
<li class="<%= options[:tab] == :release ? 'active' : '' %>"><a href="<%= path "/release_notes" %>">Release Notes</a></li>
|
17
|
-
<li class="<%= options[:tab] == :contact ? 'active' : '' %>"><a href="<%= path "/contact" %>">Contact</a></li>
|
18
|
-
</ul>
|
19
|
-
<%= import "origen/web/logo.html" %>
|
20
|
-
</div><!--/.nav-collapse -->
|
21
|
-
</div>
|
22
|
-
</div>
|
23
|
-
</div>
|
@@ -1,39 +0,0 @@
|
|
1
|
-
% render "layouts/basic.html", tab: :references do
|
2
|
-
|
3
|
-
## References
|
4
|
-
|
5
|
-
%# An example of how to write a references page:
|
6
|
-
%#### Documents
|
7
|
-
%#
|
8
|
-
%#* Block Guides
|
9
|
-
%# * [FTFL Block Guide](http://compass.freescale.net/go/ftflspecs)
|
10
|
-
%# * [FTFE Block Guide](http://compass.freescale.net/go/ftfespecs)
|
11
|
-
%# * [FTFA Block Guide](http://compass.freescale.net/go/ftflspecs)
|
12
|
-
%#* Hardmacro Creation Guides
|
13
|
-
%# * [TFSL Creation Guide](http://compass.freescale.net/go/tfsspec)
|
14
|
-
%# * [TFSE Creation Guide](http://compass.freescale.net/go/tfsspec)
|
15
|
-
%#* Training
|
16
|
-
%# * [FTFL Overview](http://compass.freescale.net/livelink/livelink/207024304/FTFL_Overview.ppt?func=doc.Fetch&nodeid=207024304)
|
17
|
-
%#* Quality
|
18
|
-
%# * [Quality Level Cheatsheet](http://compass.freescale.net/livelink/livelink/227376170/SOC_3.6_NVM_Quality_Level_1409_C90TFS.xlsx?func=doc.Fetch&nodeid=227376170)
|
19
|
-
%#
|
20
|
-
%#### Origen
|
21
|
-
%#
|
22
|
-
%#* [Origen Documentation](http://origen.freescale.net)
|
23
|
-
%#* [Origen Freeshare Commmunity](http://freeshare.freescale.net:2222/public/origen-cmty-svc/Pages/PublicHome.aspx)
|
24
|
-
%#
|
25
|
-
%#### Design Sync Vaults
|
26
|
-
%#
|
27
|
-
%#* C90TFS NVM Test Module
|
28
|
-
%# * <%= Origen.config.vault %>
|
29
|
-
%#* FTFL Design
|
30
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90tfsw/ftfl
|
31
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90tfsw/ftfl_firmware
|
32
|
-
%#* FTFE Design
|
33
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90ftfe/ftfe
|
34
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90ftfe/ftfe_firmware
|
35
|
-
%#* FTFA Design
|
36
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90tfsw/ftfa
|
37
|
-
%# * sync://sync-15040:15040/Projects/nvm_c90tfsw/ftfa_firmware
|
38
|
-
|
39
|
-
% end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# This file is similar to environment.rb and will be loaded
|
2
|
-
# automatically at the start of each invocation of Origen.
|
3
|
-
#
|
4
|
-
# However the major difference is that it will not be loaded
|
5
|
-
# if the application is imported by a 3rd party app - in that
|
6
|
-
# case only environment.rb is loaded.
|
7
|
-
#
|
8
|
-
# Therefore this file should be used to load anything you need
|
9
|
-
# to setup a development environment for this app, normally
|
10
|
-
# this would be used to load some dummy classes to instantiate
|
11
|
-
# your objects so that they can be tested and/or interacted with
|
12
|
-
# in the console.
|
@@ -1,60 +0,0 @@
|
|
1
|
-
% render "layouts/basic.html" do
|
2
|
-
|
3
|
-
%# HTML tags can be embedded in mark down files if you want to do specific custom
|
4
|
-
%# formatting like this, but in most cases that is not required.
|
5
|
-
<h1><%= Origen.app.namespace %> <span style="font-size: 14px">(<%= Origen.app.version %>)</span></h1>
|
6
|
-
|
7
|
-
### Purpose
|
8
|
-
|
9
|
-
This plugin provides...
|
10
|
-
|
11
|
-
### How To Import
|
12
|
-
|
13
|
-
##### To use in an application:
|
14
|
-
|
15
|
-
Add the following to your application's <code>Gemfile</code>:
|
16
|
-
|
17
|
-
~~~ruby
|
18
|
-
gem '<%= Origen.app.name %>', '<%= Origen.app.version %>'
|
19
|
-
~~~
|
20
|
-
|
21
|
-
##### To use in a plugin:
|
22
|
-
|
23
|
-
Add the following to your plugin's gemspec:
|
24
|
-
|
25
|
-
~~~ruby
|
26
|
-
spec.add_runtime_dependency '<%= Origen.app.name %>', '~> <%= Origen.app.version.major %>', '>= <%= Origen.app.version %>'
|
27
|
-
~~~
|
28
|
-
|
29
|
-
and require the gem in your code:
|
30
|
-
|
31
|
-
~~~ruby
|
32
|
-
require '<%= Origen.app.name %>'
|
33
|
-
~~~
|
34
|
-
|
35
|
-
|
36
|
-
### How To Use
|
37
|
-
|
38
|
-
Give some quick start description here on how to use your plugin, providing
|
39
|
-
links to the API documents where necessary for further details.
|
40
|
-
|
41
|
-
Here is an example integration:
|
42
|
-
|
43
|
-
~~~ruby
|
44
|
-
# Include some code examples here
|
45
|
-
~~~
|
46
|
-
|
47
|
-
### How To Setup a Development Environment
|
48
|
-
|
49
|
-
~~~text
|
50
|
-
mkdir <%= Origen.app.name %>
|
51
|
-
cd <%= Origen.app.name %>
|
52
|
-
dssc setvault <%= Origen.app.config.vault %> .
|
53
|
-
dssc pop -rec -get .
|
54
|
-
~~~
|
55
|
-
|
56
|
-
Follow the instructions here if you want to make a 3rd party app
|
57
|
-
workspace use your development copy of the <%= Origen.app.name %> plugin:
|
58
|
-
[Setting up a Plugin Development Environment](http://origen.freescale.net/origen/latest/guides/libraries/environment)
|
59
|
-
|
60
|
-
% end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<div class="navbar navbar-inverse navbar-fixed-top">
|
2
|
-
<div class="navbar-inner">
|
3
|
-
<div class="container">
|
4
|
-
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
5
|
-
<span class="icon-bar"></span>
|
6
|
-
<span class="icon-bar"></span>
|
7
|
-
<span class="icon-bar"></span>
|
8
|
-
</a>
|
9
|
-
<a class="brand" href="<%= path "/" %>">Home</a>
|
10
|
-
<div class="nav-collapse collapse">
|
11
|
-
<ul class="nav">
|
12
|
-
<li class="<%= options[:tab] == :api ? 'active' : '' %>"><a href="<%= path "/api/" %>">API</a></li>
|
13
|
-
<li class="<%= options[:tab] == :coverage ? 'active' : '' %>"><a href="<%= path "/coverage" %>">Coverage</a></li>
|
14
|
-
<li class="<%= options[:tab] == :archive ? 'active' : '' %>"><a href="<%= path "/archive" %>">Archive</a></li>
|
15
|
-
<li class="<%= options[:tab] == :release ? 'active' : '' %>"><a href="<%= path "/release_notes" %>">Release Notes</a></li>
|
16
|
-
<li class="<%= options[:tab] == :contact ? 'active' : '' %>"><a href="<%= path "/contact" %>">Contact</a></li>
|
17
|
-
</ul>
|
18
|
-
<%= import "origen/web/logo.html" %>
|
19
|
-
</div><!--/.nav-collapse -->
|
20
|
-
</div>
|
21
|
-
</div>
|
22
|
-
</div>
|
data/templates/web/_history.md
DELETED
@@ -1,166 +0,0 @@
|
|
1
|
-
<a class="anchor release_tag" name="v0_4_5"></a>
|
2
|
-
<h1><a href="#v0_4_5">Tag: v0.4.5</a></h1>
|
3
|
-
|
4
|
-
##### Branch: 'Trunk'
|
5
|
-
|
6
|
-
##### by Stephen McGinty on 28-May-2015 08:52AM
|
7
|
-
|
8
|
-
|
9
|
-
Fixed generic plugin build
|
10
|
-
|
11
|
-
<a class="anchor release_tag" name="v0_4_4"></a>
|
12
|
-
<h1><a href="#v0_4_4">Tag: v0.4.4</a></h1>
|
13
|
-
|
14
|
-
##### Branch: 'Trunk'
|
15
|
-
|
16
|
-
##### by Stephen McGinty on 21-May-2015 07:56AM
|
17
|
-
|
18
|
-
|
19
|
-
Added pattern dir to generic test block
|
20
|
-
|
21
|
-
<a class="anchor release_tag" name="v0_4_3"></a>
|
22
|
-
<h1><a href="#v0_4_3">Tag: v0.4.3</a></h1>
|
23
|
-
|
24
|
-
##### Branch: 'Trunk'
|
25
|
-
|
26
|
-
##### by Stephen McGinty on 20-May-2015 08:56AM
|
27
|
-
|
28
|
-
|
29
|
-
Updates symlink handling and other patches to fix new app creation on Windows.
|
30
|
-
|
31
|
-
<a class="anchor release_tag" name="v0_4_2"></a>
|
32
|
-
<h1><a href="#v0_4_2">Tag: v0.4.2</a></h1>
|
33
|
-
|
34
|
-
##### Branch: 'Trunk'
|
35
|
-
|
36
|
-
##### by Stephen McGinty on 23-Apr-2015 09:50AM
|
37
|
-
|
38
|
-
|
39
|
-
Added Testers plugin and basic test program setup to the generic test block template
|
40
|
-
|
41
|
-
<a class="anchor release_tag" name="v0_4_1"></a>
|
42
|
-
<h1><a href="#v0_4_1">Tag: v0.4.1</a></h1>
|
43
|
-
|
44
|
-
##### Branch: 'Trunk'
|
45
|
-
|
46
|
-
##### by Stephen McGinty on 31-Mar-2015 04:12AM
|
47
|
-
|
48
|
-
|
49
|
-
Removed the code coverage boiler plate code in the generated config/commands.rb file, Origen
|
50
|
-
core now provides this and new apps don't need it.
|
51
|
-
|
52
|
-
<a class="anchor release_tag" name="v0_4_0"></a>
|
53
|
-
<h1><a href="#v0_4_0">Tag: v0.4.0</a></h1>
|
54
|
-
|
55
|
-
##### Branch: 'Trunk'
|
56
|
-
|
57
|
-
##### by Ronald Lajaunie on 08-Mar-2015 20:19PM
|
58
|
-
|
59
|
-
|
60
|
-
Added MPG Test Block plugin template.
|
61
|
-
|
62
|
-
<a class="anchor release_tag" name="v0_4_0_pre0"></a>
|
63
|
-
<h2><a href="#v0_4_0_pre0">Tag: v0.4.0.pre0</a></h2>
|
64
|
-
|
65
|
-
##### Branch: 'Trunk'
|
66
|
-
|
67
|
-
##### by Corey Engelken on 24-Feb-2015 13:32PM
|
68
|
-
|
69
|
-
|
70
|
-
Added first version of the MPG BOM Application generator.
|
71
|
-
|
72
|
-
<a class="anchor release_tag" name="v0_3_5"></a>
|
73
|
-
<h1><a href="#v0_3_5">Tag: v0.3.5</a></h1>
|
74
|
-
|
75
|
-
##### Branch: 'Trunk'
|
76
|
-
|
77
|
-
##### by Stephen McGinty on 19-Feb-2015 05:33AM
|
78
|
-
|
79
|
-
|
80
|
-
Added debugger gems to Gemfile templates
|
81
|
-
|
82
|
-
<a class="anchor release_tag" name="v0_3_4"></a>
|
83
|
-
<h1><a href="#v0_3_4">Tag: v0.3.4</a></h1>
|
84
|
-
|
85
|
-
##### Branch: 'Trunk'
|
86
|
-
|
87
|
-
##### by Stephen McGinty on 15-Jan-2015 05:51AM
|
88
|
-
|
89
|
-
|
90
|
-
All plugins now come with a templates/shared directory
|
91
|
-
|
92
|
-
<a class="anchor release_tag" name="v0_3_3"></a>
|
93
|
-
<h1><a href="#v0_3_3">Tag: v0.3.3</a></h1>
|
94
|
-
|
95
|
-
##### Branch: 'Trunk'
|
96
|
-
|
97
|
-
##### by Stephen McGinty on 15-Jan-2015 04:57AM
|
98
|
-
|
99
|
-
|
100
|
-
Patch to all plugin generators to require config/application.rb from the main plugin
|
101
|
-
require file (lib/plugin\_name.rb).
|
102
|
-
This is required for Origen to identify that the given gem is an Origen plugin, it is not
|
103
|
-
required for top-level applications where Origen will automatically load
|
104
|
-
config/application.rb
|
105
|
-
|
106
|
-
<a class="anchor release_tag" name="v0_3_2"></a>
|
107
|
-
<h1><a href="#v0_3_2">Tag: v0.3.2</a></h1>
|
108
|
-
|
109
|
-
##### Branch: 'Trunk'
|
110
|
-
|
111
|
-
##### by Stephen McGinty on 15-Jan-2015 03:27AM
|
112
|
-
|
113
|
-
|
114
|
-
Fixed the generated wild card require code in lib/app\_name.rb to work correctly in the
|
115
|
-
case of a plugin being used by another app.
|
116
|
-
|
117
|
-
<a class="anchor release_tag" name="v0_3_1"></a>
|
118
|
-
<h1><a href="#v0_3_1">Tag: v0.3.1</a></h1>
|
119
|
-
|
120
|
-
##### Branch: 'Trunk'
|
121
|
-
|
122
|
-
##### by Stephen McGinty on 09-Jan-2015 05:11AM
|
123
|
-
|
124
|
-
|
125
|
-
New apps will now start from version 0.1.0, this is to avoid Bundler issues with
|
126
|
-
pre-release
|
127
|
-
tags of 0.0.0.
|
128
|
-
|
129
|
-
Updated the plugin web template to give a better install instruction.
|
130
|
-
|
131
|
-
<a class="anchor release_tag" name="v0_3_0"></a>
|
132
|
-
<h1><a href="#v0_3_0">Tag: v0.3.0</a></h1>
|
133
|
-
|
134
|
-
##### Branch: 'Trunk'
|
135
|
-
|
136
|
-
##### by Stephen McGinty on 11-Dec-2014 06:57AM
|
137
|
-
|
138
|
-
|
139
|
-
Added a generator and rake task (rake new) to create a new generator within this application and
|
140
|
-
documentation on how to create a new generator.
|
141
|
-
|
142
|
-
The generator selection process now supports domain specific generators.
|
143
|
-
|
144
|
-
Added a generic test block generator as an initial example of a domain specific generator.
|
145
|
-
|
146
|
-
<a class="anchor release_tag" name="v0_2_0"></a>
|
147
|
-
<h1><a href="#v0_2_0">Tag: v0.2.0</a></h1>
|
148
|
-
|
149
|
-
##### Branch: 'Trunk'
|
150
|
-
|
151
|
-
##### by Stephen McGinty on 08-Dec-2014 10:55AM
|
152
|
-
|
153
|
-
|
154
|
-
Added initial 2.5.0 compatible plugin shell
|
155
|
-
|
156
|
-
<a class="anchor release_tag" name="v0_1_0"></a>
|
157
|
-
<h1><a href="#v0_1_0">Tag: v0.1.0</a></h1>
|
158
|
-
|
159
|
-
##### Branch: 'Trunk'
|
160
|
-
|
161
|
-
##### by Stephen McGinty on 05-Dec-2014 11:21AM
|
162
|
-
|
163
|
-
|
164
|
-
Initial release with a working generic application builder
|
165
|
-
|
166
|
-
|