Tagged Questions

The asset pipeline is a feature added to Rails 3.1 to provide improved organization and processing for javascript, stylesheets, and images. These assets can be separated into folders under app/assets/ for those that are application-specific, lib/assets/ for assets shared across multiple ...

learn more… | top users | synonyms (1)

65
votes
7answers
19k views

rails 3.1.0 ActionView::Template::Errror (application.css isn't precompiled)

I made a basic rails app with a simple pages controller with an index function and when I load the page I get: ActionView::Template::Error (application.css isn't precompiled): 2: <html> ...
18
votes
7answers
7k views

How does one load a CSS framework in Rails 3.1?

I am trying to load a CSS framework, Blueprint, onto my Rails 3.1 application. In Rails 3.0+, I would have something like this in my views/layouts/application.html.erb: <%= stylesheet_link_tag ...
17
votes
3answers
5k views

Add a new asset path in Rails 3.1

Does anyone know how to add another folder to the asset pipeline in Rails 3.1? I'd like to serve app/assets/fonts the same way app/assets/images is served.
14
votes
7answers
808 views

How to universally skip database touches when precompiling assets on Heroku

I'm deploying a Rails 3.1 app to Heroku's Cedar stack. With Heroku Cedar and Rails 3.1, you can compile the assets yourself locally, let Heroku compile them when you push (during "slug compilation"), ...
14
votes
3answers
6k views

Rails 3.1 serving images from vendor/assets/images

I am trying to put some external images (used by a jQuery plugin) to vendor/assets/images in my Rails 3.1 app. Problem is that when I try something like: <%= image_tag ...
13
votes
2answers
1k views

How do I prevent Rails 3.1 from caching static assets to Rails.cache?

I'm using CloudFlare CDN on my Rails 3.1 application. Cloudflare is a CDN that works at the DNS level. On the first hit to a static asset, CloudFlare loads it from your app then caches it in their ...
12
votes
4answers
329 views

Using a Rails helper method within a javascript asset

Is there any way to use a Rails helper method, more specifically, a path helper method within a javascript asset file. This file foo.js.coffee.erb $('#bar').val("<%= create_post_path %>") I ...
12
votes
4answers
3k views

Working Capistrano recipe for uploading precompiled Rails 3.1 assets to Amazon S3

We have a Rails 3.1 app that allows users to upload photos to Amazon S3. Since we're using S3 in production I'd like to automatically (on cap deploy) also upload the precompiled assets (application.js ...
12
votes
1answer
5k views

Rails 3.1 asset precompilation

I want Rails 3.1 to pick up more of my assets for precompilation. In particular, the default matcher for compiling files doesn't add .js files from vendor/assets/javascripts. I can just add the assets ...
11
votes
5answers
4k views

blueprint/screen.css isn't precompiled

I've been following along Michael Hartl's excellent RoR Tutorial, but I'm using RoR 3.1. I am a newbie to RoR 3.1 and need help related to assets pipeline. Here is my problem: Before continuing to ...
10
votes
2answers
2k views

No route matches [GET] "/assets

I have a Rails 3.1 app that I'm trying to test in the production environment. I ran RAILS_ENV=production rake assets:precompile which generated all of my assets in /public/assets. The problem is that ...
8
votes
1answer
168 views

Do you add public/assets in version control?

In rails 3.1, when you precompile the assets, rails create public/assets directory and add files there. Do you version-control public/assets/*? Sam
8
votes
4answers
552 views

How to display controller specific javascript in rails 3.1?

I have my assets folder structure like this assets javascripts products --product.js --productValidate.js store --store.js I want the project.js and projectValidate.js ...
8
votes
1answer
454 views

Prevent Rails 3.1 (webrick?) from logging assets rendering

Every time I load a page, webrick pollutes its log with lots of assets rendering lines. I want it to render assets, but I don't want it to be logged, because it makes it really difficult to look into ...
8
votes
2answers
754 views

Rails 3.1 asset pipeline doesn't pick up changes to @import'd sheets

I use @import'd partial sheets to organize my css/sass: /app /assets /stylesheets _constants.sass _layout.sass ... app.css.sass app.css.sass: @import _constants.sass ...
7
votes
3answers
185 views

Proper SCSS Asset Structure in Rails

So, I have an app/assets/stylesheets/ directory structure that looks something like this: |-dialogs |-mixins |---buttons |---gradients |---vendor_support |---widgets |-pages ...
7
votes
1answer
237 views

Avoid *.js.erb files by building all the asset_path values

So I want to avoid processing JavaScript files with ERB just so I can get a proper asset path to, say, an image. Currently, this seems like the popular approach: var myImage = "<%= ...
7
votes
1answer
293 views

asset_url in mailer on rails 3.1

I have my mailer on rails 3.1 which has an inline attachment. To open that attachment i use this code: attachments["rails.png"] = File.read("#{Rails.root}/app/assets/images/Rails.png") is there a ...
7
votes
2answers
1k views

rake assets:precompile is slow

The command "rake assets:precompile" works very slow for me. Especially on my Amazon EC2 Micro production server which does not have a lot of processor resources. On EC2 I have to wait 1 minute or ...
7
votes
2answers
517 views

How to ignore Rails 3 assets from log

is possible to hack logger in Rails3 to ignore requests for assets? It is maddness to find something in log, when it is full of Started GET "/assets/tiscali.png" for 127.0.0.1 at 2011-09-09 19:59:45 ...
6
votes
3answers
1k views

Rails 3.1.1 asset pipeline Heroku caching gotcha

The problem in a nutshell is that in development mode we'd make changes to CSS or JS files but would always get cached/old versions of these files. Nothing I did had any effect. I checked ...
6
votes
8answers
335 views

Rails 3.1: Trouble on displaying images in mailer view files

I am using Ruby on Rails 3.1 and I would like to add my web site logo (that is, an image handled through the new Asset Pipeline) to an e-mail. If in my mailer view file I state the following: <% ...
6
votes
3answers
484 views

How do you catch errors in the rails asset pipeline before production?

I'm just getting acquainted with Rails 3.1, and I burned some time updating an old project and trying to work out how the new asset pipeline behaves in development mode versus production. The default ...
6
votes
1answer
315 views

Rails 3.1: Determine if asset exists

Is there a built-in way to determine if an asset exists without resorting to File.exists?(File.join(Rails.root, "foo", "bar", "baz")) and that looks through the asset paths. My app goes and fetches ...
6
votes
4answers
1k views

Am I doing something wrong with the asset pipeline?

Since "upgrading" to Rails 3.1 my app is really slow in development mode (> 30 per request) I have a lot of images and it seems most of this time-delay is the asset pipeline processing each GET ...
5
votes
2answers
181 views

Rails 3.1 Asset Pipeline not precompiling files from a different directory

I currently have a Rails 3.1 app that hosts multiple sites for several different customers. Each site is represented by a model that knows the domain name and path to where the assets are stored, ...
5
votes
4answers
690 views

CSS is not loading in app

CSS won't load in my rails app. This is index.html.erb file located in view/products: <h1>Listing products</h1> <table> <% @products.each do |product| %> <tr ...
5
votes
2answers
222 views

Rails 3.1.1 - Asset Pipeline - asset.prefix not working with resource :assets

I am having an issue with the asset pipeline, I already have a resource / controller called assets. So i have changed assets.prefix option to "/externals". config.assets.prefix = '/externals' This ...
5
votes
2answers
683 views

Twitter bootstrap has Invalid CSS according to Rails 3.1 asset pipeline during precompilation?

I created a brand new Rails 3.1 app. I added the twitter bootstrap CSS file in app/assets/stylesheets/bootstrap.min.css. Here is the relevant code app/assets/stylesheets/application.css (includes the ...
5
votes
3answers
188 views

Asset Pipeline Cacheing CSS?

I am working on a Rails 3.1 app. I have created an application.css.scss.erb file. The .erb is in the end because I want to load a variable from the config file as the color variable in the css: ...
5
votes
1answer
2k views

ActionView::Template::Error (960.css isn't precompiled)

I have an iframe which renders a partial and is not part of the main application layout or asset pipeline. I'd like to include some style sheets, however I am getting this error: ...
5
votes
2answers
481 views

How do I add asset search paths to Sprockets based on a wildcard subdomain in rails 3.1?

The Rails Asset Pipeline guide instructs you to use config.assets.paths in config/application.rb but I don't have access to the request's subdomain at this point. I'd like to be able to prepend an ...
5
votes
2answers
438 views

Precompiling a .scss manifest file using Rails 3.1's asset pipeline

The release version of Rails 3.1 is having some weird issues with precompiling a sass manifest file with the extension scss. The weird thing is that the default manifest file application.scss compiles ...
5
votes
5answers
1k views

How to use Less in a rails 3.1 application?

What is the easiest (is there an easy way?) to use Less (in combination with Sass/Scss) in the rails 3.1 assets pipeline? I want to load a file like foo.css.less like i would do for bar.css.scss I ...
5
votes
2answers
1k views

rails 3.1 - force development assets to get served up like they were in 3.0.x?

I'm in the proces of upgrading an app. Currently 3.1.rc8. The issue is that, in development, on every request, it seems like every single asset gets run through the rails stack. We're talking, ...
5
votes
2answers
676 views

Where to put Galleria (jQuery image gallery framework) in Rails 3.1 Asset Pipeline?

I'm a bit confused as to where to put a jQuery framework like Galleria in Rails 3.1's new Asset Pipeline? I know it, technically, should go into /vendors/assets/javascripts but, it is my ...
5
votes
3answers
1k views

Rails 3.1 and jQuery mobile: Best way to organize your JS & CSS while considering the asset pipeline?

I'm integrating my Rails 3.1 app with jQuery mobile (Beta 2, at the moment), and I'm uncertain how to organize my JS & CSS. I have this in my application.mobile.erb's head tag (copied right from ...
5
votes
2answers
1k views

How to deploy (sync) Rails 3.1 precompiled assets with Amazon s3

How can I deploy my precompiled assets of Rails 3.1 pipeline to s3? I need a task to automate this syncing work with my assets bucket. EDIT: This gem is exactly which I need: ...
4
votes
1answer
115 views

How can I make Rails 3 assets precompile faster?

I have a running Rails 3.2.1 application, that I'm deploying via Capistrano with the deploy/assets which runs the deploy:assets:precompile task. Everything works just fine, except that the ...
4
votes
1answer
143 views

What are the best practices when organizing assets in Rails Asset Pipeline?

Is it good practice to store javascript/images/css in its own subdirectories within assets? I've seen these kind of organizational layout in other's codes vendor - assets - javascripts ...
4
votes
1answer
82 views

User-defined themes in a rails app: how to store the assets

I am building an application that should allow user to upload their themes to display the data in a custom way. Each theme should include all the necessary assets such as html template (using ...
4
votes
1answer
233 views

Rails 3.1 Assets - Strange Serving in Development

I've got a problem with Rails 3.1 assets pipeline. Assets are included twice in development: <script src="/assets/main_new.js?body=1" type="text/javascript"></script> <script ...
4
votes
2answers
277 views

How to properly work with jQuery in Rails 3.1 asset pipeline?

I'm working on a hobby app and using some jQuery. The results are fine at the moment, but I'm a jQuery noob and I assume that there are some significant improvements that I can make to the code ...
4
votes
3answers
630 views

rails 3.1 asset pipeline css caching in development

I'm a bit confused as it seems like the application.css is including itself twice, once when it lists the resources from the manifest and then a cache of that. So when I delete an individual file it ...
4
votes
2answers
375 views

How to avoid precompiled assets being served in development mode?

I like to not concatenate Javascripts in development mode but serve them as individual files. So I configured: development.rb: config.assets.compress = false config.assets.debug = true ...
4
votes
1answer
265 views

Asset pipeline not compressing javascripts into application.js

I have two questions. Am I making a wrong assumption that all my javascripts should be compressed into application.js by default in rails 3.1 even in development mode? If not, then why does my ...
4
votes
2answers
504 views

Rails 3.1 remote requests submitting twice

I developed a Rails 3.1 application that consists of a 100% Ajax CRUD forms to input users and customers. I created two separate models, controllers, views etc. The views for each model contain ...
4
votes
1answer
635 views

Vendor CSS stylesheets in Rails 3.1 and the asset pipeline

I use Twitter Bootstrap (not that that matters but it's a third party CSS file). Because it's a third party CSS "library" it should go in /vendor/assets/stylesheets. So far so good. Now, I would like ...
4
votes
2answers
449 views

Rails 3.1 does not precompile images that are not referenced by CSS?

I am getting the following error: Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError in Photos#edit Showing .../app/views/photos/_form.html.haml where line #49 raised: ...
4
votes
1answer
840 views

Ruby on Rails 3.1 assets:precompile and images

I can't get the Rails 3.1 asset pipeline precompilation to work in production mode. It always fails on images referenced within SCSS with an error like: $ bundle exec rake assets:precompile ...

1 2 3 4 5 10