So here\'s what I\'m attempting to do. I\'m building an ember.js application, with a java backend running on GAE.
I\'m using handlebars, but I want them divided up i
Since you're not a Ruby person, here are the most reliable steps for getting a stock OSX environment set up with rake pipeline:
# on OSX, using built-in Ruby
$ sudo gem install bundler --pre
# inside your app directory
$ bundle init
# will create a file named Gemfile in the root
# inside the Gemfile
gem "rake-pipeline-web-filters"
$ bundle install --binstubs
However you were already doing it...
# to run the preview server
$ bin/rakep
# to build your assets
$ bin/rakep build