README.md in ember-cli-rails-0.8.6 vs README.md in ember-cli-rails-0.8.7
- old
+ new
@@ -268,12 +268,11 @@
To configure your EmberCLI-Rails applications for Heroku:
1. Execute `rails generate ember:heroku`.
1. Commit the newly generated files.
1. [Add the NodeJS buildpack][buildpack] and configure NPM to include the
- `bower` dependency's executable file (if your build process requires
- `bower`).
+ `bower` dependency's executable file.
```sh
$ heroku buildpacks:clear
$ heroku buildpacks:add --index 1 heroku/nodejs
$ heroku buildpacks:add --index 2 heroku/ruby
@@ -327,19 +326,14 @@
you're not using `nvm`, make sure the string you prepend to the `$PATH` variable
contains the directory or directories that contain the `bower` and `npm`
executables.
#### For faster deployments
-
-Place the following in your `deploy/<environment>.rb`
-
+Place the following in your deploy/<environment>.rb
```ruby
set :linked_dirs, %w{<ember-app-name>/node_modules <ember-app-name>/bower_components}
```
-
-to avoid rebuilding all the node modules and bower components with every deploy.
-Replace `<ember-app-name>` with the name of your ember app (default is
-`frontend`).
+to avoid rebuilding all the node modules and bower components with every deploy. Replace `<ember-app-name>` with the name of your ember app (default is `frontend`).
## Override
By default, routes defined by `ember_app` will be rendered with the internal
`EmberCli::EmberController`.