Ember.JS && Coffeescript

I know there is an ember-rails stone, however this generates javascript instead of Coffeescript. I was curious if there was a gem that included generators for coffeescript, or if there was a way to get ember-rails for this. Since this coffeescript file is used by default in Rails 3, I figured it would also be the default. Obviously, I can create all the files, I was just curious that others in the team did not have to create these files.

+5
source share
1 answer

It would seem that this is on its way: https://github.com/emberjs/ember-rails/pull/93 Before it merged with the ember-rails stone, you can simply add a modified version to your Gemfile:
gem 'ember-rails', github: 'adrulz/ember-rails'

I have not tried it, but it looks fine.

+1
source

All Articles