Low commit activity in last 3 years
No release in over a year
asset-path helper for ember-rails, including digest!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

Ember::Rails::Assets

asset-path helper for ember-rails, including digests in production!

Installation

Add this line to your application's Gemfile:

gem 'ember-rails-assets'

Usage

Ember: Require ember-rails-assets anywhere, then use the asset-path helper in your template:

// app/assets/javascripts/application.js
//= require ember-rails-assets
<!-- app/assets/javascripts/templates/application.hbs -->
<img src="{{asset-path "logo.png"}}" />

This will output <img src="/assets/logo.png" /> in development, and <img src="/assets/logo-a7f68910d32291ed6470a764a2e59465.png" /> in production.

Requirements

This gem supports Rails 4.x and Ember 1.13.x and up.

Contributing

  1. Fork it ( https://github.com/botandrose/ember-rails-assets/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request