Coder Social home page Coder Social logo

bttf / ember-cli-build-info Goto Github PK

View Code? Open in Web Editor NEW

This project forked from elidupuis/ember-cli-build-info

0.0 3.0 0.0 33 KB

Inject build information (like package version, SHA) into your Ember app.

License: MIT License

JavaScript 79.61% HTML 20.08% CSS 0.31%

ember-cli-build-info's Introduction

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 repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember 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/.

ember-cli-build-info's People

Contributors

bttf avatar elidupuis avatar ember-tomster avatar james1x0 avatar jelhan avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.