Getting Ember Edit Page


Ember Builds

The Ember Release Management Team maintains a variety of ways to get Ember and Ember Data builds.

Channels

The latest Release, Beta, and Canary builds of Ember and Ember data can be found here. For each channel a development, minified, and production version is available. For more on the differnt channels read the Post 1.0 Release Cycle blog post.

Tagged Releases

Past release and beta builds of Ember and Ember Data are availabe at Tagged Releases. These builds can be useful to track down regressions in your application, but it is recomended to use the latest stable relesae in production.

Bower

Bower is a package manager for the web. Bower makes it easy to manage dependencies in your application including Ember and Ember Data. To learn more about Bower vist http://bower.io/.

Adding Ember to your application with Bower is easy simply run bower install ember --save. For Ember Data run bower install ember-data --save. You can also add ember or ember-data to your bower.json file as follows.

1
2
3
4
5
6
7
8
{
    "name": "your-app",
    "dependencies": {
        "ember": "~1.2",
        "ember-data": "~1.0.0-beta.4"
    }
}

RubyGems

If you application uses a Ruby based build system you can use the ember-source and ember-data-source RubyGems to access ember and ember data sources from Ruby.

If your application is built in rails the ember-rails RubyGem makes it easy to integrate Ember into your Ruby on Rails application.