summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Decker <kpdecker@gmail.com>2013-12-23 16:13:22 -0800
committerKevin Decker <kpdecker@gmail.com>2013-12-23 16:13:22 -0800
commitca8e34c94d1c8dc42976d819a4cd163d06bad2cb (patch)
treeb21f1112bdbd3ff1c7502e02a594f9ed207dd856
parent7d69becd2e1671d0e48dc8425ffa475736bffc1f (diff)
parent4a94340f4204c3b6e2d425c423c8072a15404c5d (diff)
downloadhandlebars.js-ca8e34c94d1c8dc42976d819a4cd163d06bad2cb.zip
handlebars.js-ca8e34c94d1c8dc42976d819a4cd163d06bad2cb.tar.gz
handlebars.js-ca8e34c94d1c8dc42976d819a4cd163d06bad2cb.tar.bz2
Merge pull request #641 from wycats/ember-testing
Document ember testing process
-rw-r--r--README.markdown15
1 files changed, 14 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 2b5e612..9d0e3bf 100644
--- a/README.markdown
+++ b/README.markdown
@@ -387,7 +387,7 @@ External Resources
* [Gist about Synchronous and asynchronous loading of external handlebars templates](https://gist.github.com/2287070)
-Have a project using Handlebars? Send us a [pull request](https://github.com/wycats/handlebars.js/pull/new/master)!
+Have a project using Handlebars? Send us a [pull request][pull-request]!
Helping Out
-----------
@@ -412,6 +412,18 @@ Feel free to contact commondream or wycats through GitHub with any other
questions or feature requests. To submit changes fork the project and
send a pull request.
+### Ember testing
+
+The current ember distribution should be tested as part of the handlebars release process. This requires building the `handlebars-source` gem locally and then executing the ember test script.
+
+```sh
+grunt build release
+export HANDLEBARS_PATH=`pwd`
+
+cd $emberRepoDir
+bundle exec rake test
+```
+
### Releasing
Handlebars utilizes the [release yeoman generator][generator-release] to perform most release tasks.
@@ -435,3 +447,4 @@ Handlebars.js is released under the MIT license.
[bower-repo]: https://github.com/components/handlebars.js
[builds-page]: http://builds.handlebarsjs.com.s3.amazonaws.com/bucket-listing.html?sort=lastmod&sortdir=desc
[generator-release]: https://github.com/walmartlabs/generator-release
+[pull-request]: https://github.com/wycats/handlebars.js/pull/new/master