Template Layout
source/
index.html
images/
stylesheets/
javascripts/
application.js
main.js
controllers/ foo_controller.js
models/ foo.js
routes/ foo_route.js
views/ foo_view.js
templates/ foo.handlebars
vendor/
stylesheets/
javascripts/
jquery.js
You may also want to checkout the Ember.js with Middleman example.
Download or clone into ~/.middleman/ember
$ git clone git://github.com/rossta/middleman-ember-template.git ~/.middleman/ember
Install middleman > 3.1, at present that means:
gem install middleman
Initialize a new middleman project
$ middleman init my_project --template=ember
Then bundle, and start the middleman server
bundle
middleman server
You can read more about project templates on the Middleman site.