Tagged Questions

Sprockets takes any number of source files and preprocesses them line-by-line in order to build a single concatenation. Specially formatted lines act as directives to the Sprockets preprocessor, telling it to require the contents of another file or library first or to provide a set of asset files ...

learn more… | top users | synonyms

76
votes
7answers
5k views

How to disable logging of asset pipeline (sprockets) messages in Rails 3.1?

Sprockets tends to be quite verbose in the (dev) log by default under Rails 3.1 (RC1): Started GET "/assets/application.css" for 127.0.0.1 at 2011-06-10 17:30:45 -0400 Compiled ...
55
votes
14answers
6k views

Using Rails 3.1, where do you put your “page specific” javascript code?

To my understanding, all of your javascript gets merged into 1 file. Rails does this by default when it adds //= require_tree . to the bottom of your application.js manifest file. This sounds like a ...
36
votes
1answer
4k views

Using Rails 3.1 assets pipeline to conditionally use certain css

I'm in the process of building my first solo rails app using rails 3.1.rc5. My problem is that I want to have my site render the various css files conditionally. I'm using blueprint css and I'm trying ...
21
votes
5answers
9k views

Rails 3.1 asset pipeline and manually ordered Javascript requires

I am trying to convert an existing app to the new 3.1 asset pipeline layout, and want to include a lot of vendor files that have to be in a specific order, (underscore.js and backbone being one pair). ...
17
votes
2answers
2k views

Rails 3.1 is very slow in development-mode because of assets, what to do?

After I added the sprocket gem rails is loading very slow in developmentmode, what should I do to speed it up?
14
votes
5answers
4k views

How to manage CSS Stylesheet Assets in Rails 3.1?

I'm just learning the new asset pipeline in Rails 3.1. One particular problem I'm having is with the way Sprockets just mashes all the found CSS stylesheets into one massive stylesheet. I understand ...
13
votes
2answers
2k views

Rails 3.1 asset pipeline: how to load controller-specific scripts?

When you add a new controller in Rails 3.1, a new JS file added, fx, controller.js.coffee. I thought this file is included ONLY when this controller is called. But it seems like default instruction ...
11
votes
6answers
1k views

Rails 3.1 and sprockets make it harder to debug using firebug?

In Rails 3.1, Sprockets are used to manage assets and package them into a single file. Which, in general, is not such a bad idea. As quoted from an external source, which explains the issue at hand: ...
10
votes
2answers
710 views

How do you write DRY, modular coffeescript with Sprockets in Rails 3.1?

I'm in the early stages of trying to write some sensible Javascript. I want to namespace basically everything under the name of my application to avoid globals as much as possible, but still give me a ...
9
votes
2answers
2k views

Rails 3.1.0 assets folder not rendering: Sprockets::Environment#static_root is deprecated

When trying to update my rails 3.1.0.rc4 app to rc6, I must have messed something up because my assets (JS and CSS files) stopped rendering. I tried to revert to rc4, but was still having this ...
9
votes
4answers
1k views

Rails 3.1 with Asset Pipeline, link_to :confirm message showing twice?

Okay, so I've seen this question about this problem being caused by multiple linkings of jQuery or Prototype, but I can confirm that I'm only linking to jQuery once on the entire page. My problem is ...
7
votes
1answer
236 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
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 ...
7
votes
2answers
836 views

How to reference files in a JQuery plugin in Rails 3.1 using the Sprockets architecture?

The Plupload plugin is a good example. Here's the listing of the plugin added to the vendor directory: ./plupload/jquery.plupload.queue ./plupload/jquery.plupload.queue/css ...
6
votes
2answers
2k views

SASS, Rails 3.1: Loading stylesheets in vendor/assets

I'm using SASS to load stylesheets in a Rails 3.1(sass-rails 3.1) app. For example, sass partials in app/assets/stylesheets are loaded using @import in application.sass - @import "pages/common" ...
6
votes
3answers
2k views

Broken precompiled assets in Rails 3.1 when deploying to a sub-URI

I'm in the process of updating a Rails 3 app to use Rails 3.1 and as part of that, am making use of the new asset pipeline. So far, I've got everything working apart from one rather annoying problem I ...
6
votes
4answers
971 views

rails generate rspec:install - no such file to load --sprockets/railtie (LoadError)

I'm a RoR-Beginner and I started learning it with the RoR-Tutorial. Actually I'm at this chapter (http://ruby.railstutorial.org/chapters/static-pages#top) and try to install rspec. But everytime when ...
5
votes
1answer
474 views

Using RequireJS with a Rails 3.1 app

Question If you've used RequireJS with a Rails 3 (esp 3.1) app, how is that working for you? Any configuration tricks or other gotchas that I need to watch out for? Background I'm contemplating ...
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
437 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
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 ...
4
votes
2answers
80 views

Is there a Sprockets-like library/addon for Spring/SpringMVC?

I've tried to do this via build tools, but ultimately what I want is something like Sprockets. Does this exist for Spring/SpringMVC-based projects? Or do I have to write a servlet to do this and cache ...
4
votes
3answers
197 views

Sprockets File not Found Exception

I was trying out some sample applications for Rails. I created some controllers and pages. But when i try to access one of them i get an exception on the webpage: Sprockets::FileNotFound in ...
4
votes
2answers
686 views

Assets say “not precompiled” when they are precompiled

Ok so, I'm getting this error when I try to use the asset pipeline. I don't understand what's causing it. Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError in Photos#show Showing ...
4
votes
1answer
570 views

rails 3.1 asset pipeline: ignore assets from a gem

im not quite sure what the actual behavior is, so my first question is: are assets (e.g. javascripts) from a gem (in my case spree) always compiled? i don't use spree's javascripts, and therefore ...
4
votes
1answer
837 views

Problems with sprockets when deploying Rails 3.1.rc4

I'm sure that I am just overlooking something simple here but this has been driving me crazy all night! When trying to deploy a Rails 3.1.rc4 application to the Cedar stack on Heroku (I did this ...
4
votes
2answers
859 views

How to use Sprockets 2 with Rails 3.0.x (how to use precompiled assets)

I'm trying to replicate the basics of the asset pipeline introduced in rails 3.1 in my rails 3.0 app. So far, I've got something like this: https://gist.github.com/1112393. It works great: I have ...
4
votes
2answers
403 views

How do I get escape_javascript and other helpers in my sprockets pre-processed js file (not a view)?

I'm using Rails 3.1 and the sprockets stuff. I want to use ERB to pre-process a js file that will then be included using javascript_include_tag. It is generated from code, and so I'm pre-processing ...
4
votes
2answers
821 views

Rails 3.1/Compass/sprockets - generating css twice

Using the github versions of the compass rails31 branch and sass-rails: gem "sass-rails", :git => "https://github.com/rails/sass-rails.git" gem "compass", :git => ...
4
votes
1answer
637 views

How to use Sprockets 2 with Rails 3.0.x

I'm trying to use these gists to get Sprockets 2.0beta to work with a Rails 3.0.5 app in a similar way to how it works natively in Rails 3.1. Failing thoroughly so far--my app is finding the correct ...
4
votes
1answer
2k views

Rails 3.1 & Sprockets & compiled JS files

So just trying out Rails 3.1-rc1 with the Sprockets asset pipeline: I run rake assets:precompile and I get the /public/assets directory and the application.js file the MD5 hash: ...
4
votes
3answers
346 views

Javascript organization strategies for Rails 3

I'm currently working on an application with a lot of javascript code. I'm writing inline javascript code on every of the pages/partials, however most of the code is re-utilized somewhere else. I'm ...
3
votes
1answer
339 views

Sinatra app with sprockets not working on Heroku

I have a little Sinatra app including this module: module Sprockets module Helpers def asset_path(source) "/assets/#{Environment.instance.find_asset(source).digest_path}" end def ...
3
votes
2answers
62 views

sprockets duplicate file naming

I have the following files, in my asset path: javascripts/abc.js templates/abc.js.mustache # this gets compiled to abc.js naturally, they both would be requested as assets/abc.js. Is there a fix? ...
3
votes
2answers
216 views

Overriding backend assets in production environment

I am working on a project that needs to alter Refinery's WYMEditor behavior a bit. This is easily done by overriding jquery.refinery.wymeditor.js using rake refinery:override and editing it to my own ...
3
votes
3answers
706 views

Asset pipeline, compass font-face and eot?iefix call to the font

I am trying to use a Compass font-face mixin, which contains the inclusion of *.eot?iefix My app/assets/fonts contains all the font types needed, including .eot. When I try to run assets:precompile ...
3
votes
2answers
510 views

Rails 3.1 Sprockets require directives - is there a way to exclude particular files?

If I'm using //=require_tree . in application.css, is there a way to exclude particular files other than resorting to //=require_directory and tree organization? Perhaps something like //= ...
3
votes
2answers
346 views

Why the heck is Rails 3.1 / Sprockets 2 / CoffeeScript adding extra code?

Working with Rails 3.1 (rc5), and I'm noticing that any coffeescript file I include rails (or sprockets) is adding in initializing javascript at the top and bottom. In other words, a blank .js.coffee ...
3
votes
2answers
1k views

what does require_self mean

In rails3.1 application.css we could see /* *= require_self *= require_tree . */ I know that require_tree . is just telling the system to bundle together everything from the stylesheets folder ...
3
votes
4answers
3k views

How do I use reference images in Sass when using Rails 3.1?

I have a Rails 3.1 project with the asset pipeline working great. The problem is that I need to reference images in my Sass, but Rails calculates image URLs. (This is particularly important in ...
3
votes
3answers
248 views

sprockets - multiple entry points?

Sprockets official documentation clearly says that: Sprockets takes any number of source files and preprocesses them line-by-line in order to build a `single` concatenation. I'm a big fan of ...
3
votes
2answers
2k views

Rails 3.1: The public directory no longer serves js assets. How to load an additional js file after page is loaded?

I use a JQuery plugin that loads another js file from the server after the initial page load. Since all js assets are concatenated in Rails 3.1 and the pubic directory is not used to serve js assets, ...
2
votes
2answers
48 views

Include js/css module in Rails in vendor/lib dir

I have a Rails 3.1 project and I'm trying to include a jQuery plugin that has both js, css and image files and i've put them under vendor/assets/chosen/{images,javascripts,stylesheets} and i've added ...
2
votes
0answers
16 views

Sprockets max-age header on heroku

My application.js file name looks like application-b600352536291bc180983d43e6a2407f.js. So it has the md5 cache buster in its name. I have set the max-age option for static assets to 1 hour ...
2
votes
1answer
72 views

How do I get assets to compile to their own files AND into the application.js file?

Alright so lets say I have these files in vendor/assets/javascript/: modernizer.js lightbox.js highchart.js And these files in app/assets/javascript/: pages.js.coffee accounts.js.coffee ...
2
votes
2answers
178 views

Exclude certain assets from pipeline in development environment?

I would like to somehow prevent certain assets from being included in the asset pipeline in the development environment. So far, I have tried the following: # ...
2
votes
1answer
79 views

Coffeescript/Sprockets '__extends' helper duplication

I'm using rails31 & coffeescript and have defined some classes that extend from a parent class. Coffeescript adds an __extends helper method in the generated output to make this happen, problem is ...
2
votes
1answer
84 views

Use sprockets 2.0 on both local and prod (php)environments with minimal hassle

While I recognize the dependency handling of sprockets is awesome, I have little knowledge on how to use it properly to make it meet my needs. I'm actually working on a php 5.3 application (lithium ...
2
votes
1answer
328 views

Asset Subdirectories in Rails 3.1

I have a Rails 3.1 app with an image: app/assets/images/icons/button.png It seems like the image should be served at this URL: assets/icons/button.png but if I go to this URL I get a 404. To fix ...
2
votes
1answer
70 views

how to prevent sprockets from caching a .erb file?

Sprockets gem caches .erb files even though the ruby code in those might evaluate differently on every compilation For example: foo.js.erb var foo = <%= Kernel.rand %>; evaluates it once and ...

1 2 3