sprockets-rails icon indicating copy to clipboard operation
sprockets-rails copied to clipboard

Sprockets Rails integration

Results 81 sprockets-rails issues
Sort by recently updated
recently updated
newest added

The default precompile filters are appended after the application is loaded so the filters added here (https://github.com/rails/sprockets-rails/blob/e135984ee2b07e1a67c3fa57f799f40b0830e99a/lib/sprockets/railtie.rb#L108) will always be applied regardless of what is specified in the configuration of...

Hi all, @rafaelfranca, I spent time today troubleshooting an issue in [Refinery with Rails 5 and have even shared an example app](https://github.com/refinery/refinerycms/issues/3178) to demonstrate the issue. Having discussed this with...

Hello, I'm currently trying to upgrade our `sprockets-rails` from 3.1 to 3.2.0, and this works for the application itself, namely I can run the application and everything works, but our...

Updating from 3.6.0. to 3.7.0 caused my app to crash on an Encoding Error. The Gemfile.lock attached is working because I reset sprockets back to 3.6.0. If you update it...

I am getting the following when trying to precompile my assets locally ``` RAILS_ENV=production bundle exec rake assets:precompile rake aborted! Sprockets::NotImplementedError: Custom asset_path helper is not implemented Extend your environment...

with `twitter_card.png` under `app/assets/images` When I render image path with `image_url('twitter_card')` on production environment, it produce: `http://localhost:3000/images/twitter_card` while on development environment is `http://localhost:3000/assets/twitter_card-db51e42973995bd4864955be0a949040f6c453b57ac692bd7e0fd4b9871b74f3.png` As a control group: When I render...

I'm trying to run rspec tests in a recent updated ancient app. I just updated Rails (3.2 to 4.0.13), rspec (2.x to 3.4.4) and many other gems. When I try...

_From @fschwan on January 3, 2016 22:54_ I've just tried to create a new rails 4.2.5 project with ruby 2.3.0. The behaviour of the ``` Rails.application.config.assets.precompile ``` array changed somehow....

I'm using sprockets with its ability to use [index files](http://guides.rubyonrails.org/asset_pipeline.html#using-index-files) to organize assets. So with the following file structure under `app/assets/stylesheets/foo/`: - index.css.scss - bar.css.scss - baz.css.scss `app/assets/stylesheets/foo/index.css.scss` looks like...

Hi guys, recently I meet a weird problem but I can not find any solution. The below shows my assets organization: ``` --- app |--- assets |--- stylesheets |--- home.css...