We are thinking of migrating a Rails/Ember app to use Ember-CLI. Before we attempt that I have some questions.
We use i18n-js which allows us to define translations in Ruby (YAML actually,) and have those appear in Javascript on the front end. Can this continue to work with ember-cli? This requires Rails ERB to work and we have an en.js.erb file for example.
We also compile Sass files at runtime to generate customized CSS. This is also ERB based where we have say colors.scss.erb which takes dynamic settings from the database when generating css. Can this work with ember-cli?
Ideally, we would like to use both the Rails asset pipeline with ember-cli with some files served by each. How can this be made to work?
Thanks for any info.