ember-cli-build-info
v0.3.0
Published
Inject build information (version, current SHA) into your Ember app.
Downloads
11
Maintainers
Readme
ember-cli-build-info
Inject build info into your routes, controllers, and services.
Note: this addon currently assumes you are using git for version control.
Information includes:
buildInfo: {
semver: '0.1.4-beta.1+53df212',
version: '0.1.4',
release: 'beta.1',
build: '53df212'
}
See semver-utils.parse for a list of all values available.
Installation
npm install --save-dev ember-cli-build-info
Usage
The data is injected into routes, controllers, and services using the buildInfo
key.
In a template:
<p>Version: {{buildInfo.version}}</p>
<p>Release: {{buildInfo.release}}</p>
<p>SHA: {{buildInfo.build}}</p>
In a route, controller, or service:
var buildInfo = this.buildInfo;
Configuration Options
There is currently a single configurable option. Customize using the buildInfoOptions
hash in your Brocfile:
var app = new EmberApp({
buildInfoOptions: {
metaTemplate: 'version={VERSION}'
}
});
metaTemplate
Allows you to inject a meta tag containing the build info. Defaults to false
.
Available template keys include {SEMVER}
, {VERSION}
, {RELEASE}
and {BUILD}
. These keys will be replaced by the current build info values.
The example above would yield:
<meta name="build-info" content="version=0.0.2"/>
Note that
{COMMIT}
is deprecated in favour of{BUILD}
.
Collaborating
This README outlines the details of collaborating on this Ember addon.
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.