origen_ahb 0.2.0.pre2 → 0.2.0.pre3
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
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: b2b9395c4f752da2f1697baee037b4ec7735fb80
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: d0fcdfabdf886606eaee89eb64789f6010e2f847
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 94d45c755693f73afeaf8bb75bb5fc6ab13bc496f7a9eb48ac772b585a4e19d48f48b98e6993dd237acec11c5f5b429b9109b583872c70d30457a4ce82cc757a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 72115f5059e21b4c1b35ed3a6c0ab5a8b72b270a258595dfc8e914e81e7e39d062737dc2e56917f83725bf0d869096385819929237fc6e88752c46c23308d137
         
     | 
| 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # This file will be loaded by  
     | 
| 
      
 1 
     | 
    
         
            +
            # This file will be loaded by Origen to boot your application, just leave it as
         
     | 
| 
       2 
2 
     | 
    
         
             
            # is and modify lib/origen_ahb.rb to load the additional resources that your
         
     | 
| 
       3 
3 
     | 
    
         
             
            # application requires
         
     | 
| 
       4 
4 
     | 
    
         
             
            require "origen_ahb"
         
     | 
    
        data/config/version.rb
    CHANGED
    
    
    
        data/templates/web/index.md.erb
    CHANGED
    
    | 
         @@ -2,59 +2,18 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            %# HTML tags can be embedded in mark down files if you want to do specific custom
         
     | 
| 
       4 
4 
     | 
    
         
             
            %# formatting like this, but in most cases that is not required.
         
     | 
| 
       5 
     | 
    
         
            -
            <h1><%=  
     | 
| 
      
 5 
     | 
    
         
            +
            <h1><%= Origen.app.namespace %> <span style="font-size: 14px">(<%= Origen.app.version %>)</span></h1>
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
            ### Purpose
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
            This  
     | 
| 
       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 '<%= RGen.app.name %>', '<%= RGen.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 '<%= RGen.app.name %>', '~> <%= RGen.app.version.major %>', '>= <%= RGen.app.version %>'
         
     | 
| 
       27 
     | 
    
         
            -
            ~~~
         
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
            and require the gem in your code:
         
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
            ~~~ruby
         
     | 
| 
       32 
     | 
    
         
            -
            require '<%= RGen.app.name %>'
         
     | 
| 
       33 
     | 
    
         
            -
            ~~~
         
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
      
 9 
     | 
    
         
            +
            This application...
         
     | 
| 
       35 
10 
     | 
    
         | 
| 
       36 
11 
     | 
    
         
             
            ### How To Use
         
     | 
| 
       37 
12 
     | 
    
         | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       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
         
     | 
| 
      
 13 
     | 
    
         
            +
            Add quickstart documentation here...
         
     | 
| 
       48 
14 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
            mkdir <%= RGen.app.name %>
         
     | 
| 
       51 
     | 
    
         
            -
            cd <%= RGen.app.name %>
         
     | 
| 
       52 
     | 
    
         
            -
            dssc setvault <%= RGen.app.config.vault %> .
         
     | 
| 
       53 
     | 
    
         
            -
            dssc pop -rec -get .
         
     | 
| 
       54 
     | 
    
         
            -
            ~~~
         
     | 
| 
      
 15 
     | 
    
         
            +
            ### How To Setup the Application Environment
         
     | 
| 
       55 
16 
     | 
    
         | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
            workspace use your development copy of the <%= RGen.app.name %> plugin:
         
     | 
| 
       58 
     | 
    
         
            -
            [Setting up a Plugin Development Environment](http://rgen.freescale.net/rgen/latest/guides/libraries/environment)
         
     | 
| 
      
 17 
     | 
    
         
            +
            Describe how a user would setup a new workspace for this application...
         
     | 
| 
       59 
18 
     | 
    
         | 
| 
       60 
19 
     | 
    
         
             
            % end
         
     | 
| 
         @@ -1,8 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            title: <%= options[:title] || RGen.app.namespace %>
         
     | 
| 
      
 2 
     | 
    
         
            +
            title: <%= options[:title] || Origen.config.name %>
         
     | 
| 
       4 
3 
     | 
    
         
             
            ---
         
     | 
| 
       5 
     | 
    
         
            -
            <%= render " 
     | 
| 
      
 4 
     | 
    
         
            +
            <%= render "partials/navbar.html", tab: options[:tab] %>
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            <div class="row">
         
     | 
| 
       8 
7 
     | 
    
         
             
            %# The markdown attribute is important if you are going to include content written
         
     | 
| 
         @@ -1,22 +1,20 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            < 
     | 
| 
       2 
     | 
    
         
            -
              <div class=" 
     | 
| 
       3 
     | 
    
         
            -
                <div class=" 
     | 
| 
       4 
     | 
    
         
            -
                  < 
     | 
| 
      
 1 
     | 
    
         
            +
            <nav class="navbar navbar-inverse navbar-fixed-top">
         
     | 
| 
      
 2 
     | 
    
         
            +
              <div class="container">
         
     | 
| 
      
 3 
     | 
    
         
            +
                <div class="navbar-header">
         
     | 
| 
      
 4 
     | 
    
         
            +
                  <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
         
     | 
| 
      
 5 
     | 
    
         
            +
                    <span class="sr-only">Toggle navigation</span>
         
     | 
| 
       5 
6 
     | 
    
         
             
                    <span class="icon-bar"></span>
         
     | 
| 
       6 
7 
     | 
    
         
             
                    <span class="icon-bar"></span>
         
     | 
| 
       7 
8 
     | 
    
         
             
                    <span class="icon-bar"></span>
         
     | 
| 
       8 
     | 
    
         
            -
                  </ 
     | 
| 
       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 "rgen/web/logo.html" %>
         
     | 
| 
       19 
     | 
    
         
            -
                  </div><!--/.nav-collapse -->
         
     | 
| 
      
 9 
     | 
    
         
            +
                  </button>
         
     | 
| 
      
 10 
     | 
    
         
            +
                  <a class="navbar-brand" href="<%= path "/" %>">Home</a>
         
     | 
| 
       20 
11 
     | 
    
         
             
                </div>
         
     | 
| 
      
 12 
     | 
    
         
            +
                <div id="navbar" class="collapse navbar-collapse">
         
     | 
| 
      
 13 
     | 
    
         
            +
                  <ul class="nav navbar-nav">
         
     | 
| 
      
 14 
     | 
    
         
            +
                    <li class="<%= options[:tab] == :api ? 'active' : '' %>"><a href="<%= path "/api/" %>">API</a></li>
         
     | 
| 
      
 15 
     | 
    
         
            +
                    <li class="<%= options[:tab] == :release ? 'active' : '' %>"><a href="<%= path "/release_notes" %>">Release Notes</a></li>
         
     | 
| 
      
 16 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 17 
     | 
    
         
            +
                  <%= import "origen/web/logo.html" %>
         
     | 
| 
      
 18 
     | 
    
         
            +
                </div><!--/.nav-collapse -->
         
     | 
| 
       21 
19 
     | 
    
         
             
              </div>
         
     | 
| 
       22 
     | 
    
         
            -
            </ 
     | 
| 
      
 20 
     | 
    
         
            +
            </nav>
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: origen_ahb
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.0.pre3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Chris P Nappi
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2015-11- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2015-11-24 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: origen
         
     | 
| 
         @@ -46,9 +46,9 @@ extensions: [] 
     | 
|
| 
       46 
46 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       47 
47 
     | 
    
         
             
            files:
         
     | 
| 
       48 
48 
     | 
    
         
             
            - config/application.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - config/boot.rb
         
     | 
| 
       49 
50 
     | 
    
         
             
            - config/commands.rb
         
     | 
| 
       50 
51 
     | 
    
         
             
            - config/development.rb
         
     | 
| 
       51 
     | 
    
         
            -
            - config/environment.rb
         
     | 
| 
       52 
52 
     | 
    
         
             
            - config/users.rb
         
     | 
| 
       53 
53 
     | 
    
         
             
            - config/version.rb
         
     | 
| 
       54 
54 
     | 
    
         
             
            - lib/origen_ahb.rb
         
     |