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.
npm install --save-dev ember-cli-build-info
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;
There is currently a single configurable option. Customize using the buildInfoOptions
hash in your Brocfile:
var app = new EmberApp({
buildInfoOptions: {
metaTemplate: 'version={VERSION}'
}
});
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}
.
This README outlines the details of collaborating on this Ember addon.
git clone
this repositorynpm install
bower install
ember server
- Visit your app at http://localhost:4200.
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.