README.md in ember-rails-assets-0.0.2 vs README.md in ember-rails-assets-0.1.0

- old
+ new

@@ -1,8 +1,8 @@ # Ember::Rails::Assets -`asset-path` helper for ember-rails, including digest! +`asset-path` helper for ember-rails, including digests in production! ## Installation Add this line to your application's Gemfile: @@ -13,17 +13,19 @@ ## Usage Ember: Require `ember-rails-assets` anywhere, then use the `asset-path` helper in your template: ```javascript -// app/assets/javascripts/templates/application.hbs +// app/assets/javascripts/application.js //= require ember-rails-assets -<img src={{asset-path "dogs/chihuahua"}} /> + +// app/assets/javascripts/templates/application.hbs +<img src="{{asset-path "dogs/chihuahua"}}" /> ``` ## Contributing -1. Fork it ( https://github.com/[my-github-username]/ember-rails-assets/fork ) +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