% render "layouts/basic.html" do %# HTML tags can be embedded in mark down files if you want to do specific custom %# formatting like this, but in most cases that is not required.
Gemfile
:
~~~ruby
gem '<%= RGen.app.name %>', '<%= RGen.app.version %>'
~~~
##### To use in a plugin:
Add the following to your plugin's gemspec:
~~~ruby
spec.add_runtime_dependency '<%= RGen.app.name %>', '~> <%= RGen.app.version.major %>', '>= <%= RGen.app.version %>'
~~~
and require the gem in your code:
~~~ruby
require '<%= RGen.app.name %>'
~~~
### How To Use
Give some quick start description here on how to use your plugin, providing
links to the API documents where necessary for further details.
Here is an example integration:
~~~ruby
# Include some code examples here
~~~
### How To Setup a Development Environment
~~~text
mkdir <%= RGen.app.name %>
cd <%= RGen.app.name %>
dssc setvault <%= RGen.app.config.vault %> .
dssc pop -rec -get .
~~~
Follow the instructions here if you want to make a 3rd party app
workspace use your development copy of the <%= RGen.app.name %> plugin:
[Setting up a Plugin Development Environment](http://rgen.freescale.net/rgen/latest/guides/libraries/environment)
% end