origen_ahb 0.2.0.pre2 → 0.2.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6aaf5011cdd5d3328aef9c3feeebffcf324d4a9
4
- data.tar.gz: 76f66169b9bead42f206a0d84d92597fb13f4628
3
+ metadata.gz: b2b9395c4f752da2f1697baee037b4ec7735fb80
4
+ data.tar.gz: d0fcdfabdf886606eaee89eb64789f6010e2f847
5
5
  SHA512:
6
- metadata.gz: 436df5b100adc4d4e645c1c819e48690c8050558c61dbf4d59b4de33e024dd935f25833d823e4bc7cee48495a7f42b8c0214f59e571874c5f1bf113bb06baf48
7
- data.tar.gz: f330f2d3b46a976d132a4ef74ed961b345748869287bd02f87622eaeb50c9462559184c83107e8da9cf636252172fd9c00da09ac2a5f43e3477335ad266118fa
6
+ metadata.gz: 94d45c755693f73afeaf8bb75bb5fc6ab13bc496f7a9eb48ac772b585a4e19d48f48b98e6993dd237acec11c5f5b429b9109b583872c70d30457a4ce82cc757a
7
+ data.tar.gz: 72115f5059e21b4c1b35ed3a6c0ab5a8b72b270a258595dfc8e914e81e7e39d062737dc2e56917f83725bf0d869096385819929237fc6e88752c46c23308d137
@@ -1,4 +1,4 @@
1
- # This file will be loaded by RGen to boot your application, just leave it as
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
@@ -2,7 +2,7 @@ module OrigenAhb
2
2
  MAJOR = 0
3
3
  MINOR = 2
4
4
  BUGFIX = 0
5
- DEV = 2
5
+ DEV = 3
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
8
8
  end
@@ -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><%= RGen.app.namespace %> <span style="font-size: 14px">(<%= RGen.app.version %>)</span></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 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 '<%= 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
- 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
13
+ Add quickstart documentation here...
48
14
 
49
- ~~~text
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
- Follow the instructions here if you want to make a 3rd party app
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
- layout: bootstrap
3
- title: <%= options[:title] || RGen.app.namespace %>
2
+ title: <%= options[:title] || Origen.config.name %>
4
3
  ---
5
- <%= render "templates/web/partials/navbar.html", tab: options[:tab] %>
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
- <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">
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
- </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 "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
- </div>
20
+ </nav>
@@ -1,5 +1,5 @@
1
1
  % render "layouts/basic.html", tab: :release do
2
2
 
3
- <%= render "#{RGen.root}/doc/history" %>
3
+ <%= render "#{Origen.root}/doc/history" %>
4
4
 
5
5
  % end
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.pre2
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-23 00:00:00.000000000 Z
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