The asset pipeline is a feature added to Ruby on Rails 3.1 to provide improved organization and processing for JavaScript, stylesheets, and images.

learn more… | top users | synonyms (1)

0
votes
1answer
17 views

Ruby on Rails create a dynamic asset

I'm making a small gem to help me out with further development which creates a small javascript function based on some database resutls. That piece of javascript must be added to the page somehow but ...
0
votes
1answer
12 views

Undefined local variable or method when I use <%= home_index_path %> in application.js.erb, why?

As the title states, I have an application.js.erb file that looks like the following: //= require jquery //= require jquery-ui //= require bootstrap //= require html5shiv //= require_tree . ...
0
votes
3answers
26 views

Ruby on Rails duplicate of JS files included in HTML

I should probably first mention that I do not have precompiling on. I have 8 different Js files (7, excluding Application.js) and when I use <%= javascript_include_tag 'application' %> it ...
0
votes
0answers
6 views

Ruby Rails 3.2 where to place generated image which then can be serve as an asset?

I'm building a reporting appl. Each week, it will generate a number of charts as png. Then it will email with these charts serve via appl as the asset host. During development, these charts are saved ...
1
vote
0answers
21 views

Sass/Sprockets: Where is image-url?

I'm currently implementing a runtime module which creates a sass file, generates a css file from it, removes the sass and gets on with its life. I'm on Rails on Sprockets. I've been meddling with the ...
1
vote
1answer
26 views

Just did `bundle update` and application.css.scss seems to not be compiling [closed]

I am noticing that none of the styles in my application.css.scss are being included in my app - all of a sudden. This just happened after I did a bundle update recently. This is what changed: ...
0
votes
0answers
20 views

Rails assets still being served in single file in development

In my development.rb I have config.assets.debug = true config.assets.compress = false However my assets are being served in single files" images/application.js javascripts/application.css I have ...
0
votes
0answers
8 views

Having a customized Fancybox in Rails

I am using Rails 3.2. I need to implement a Fancybox like feature in my Rails applications, and I am aware of the fancy-box rails gems, and how to couple it with PaperClip (which I use to manage my ...
0
votes
0answers
36 views

undefined method `[]' for nil:NilClass during assets:precompile rake while deploying with capistrano

I've got capistrano configured so that assets are compiled on production when i run deploy via capistrano. Im using Ruby 1.9.3, Rails 3.2.13 with MongoDb database. Problem exists only during ...
0
votes
0answers
72 views

Images won't load in Rails 4 asset pipeline

I'm hoping there's a simple answer to this. I'm using rails 4rc1 and and just building a little simple app to get myself familiar with 4.0. I tried adding an image to my view with this: <%= ...
0
votes
0answers
24 views

config.action_controller.asset_host only works for dynamic assets?

I am using the asset_sync gem to host my assets on amazon s3. I have setup the config.action_controller.asset_host to point to my s3 bucket so that it will serve my assets from s3. However only my ...
0
votes
1answer
17 views

dynamic asset loading heroku

I'm implementing a site tour feature for the website https://looky.co, and I want to only send the site_tour.js file when a show_site_tour is set to true. (show_site_tour is a database column). I ...
0
votes
1answer
20 views

How do i get rails to request the gzip static asset instead of the regular one?

I recently started pushing my static-assets to S3 via 'asset_sync' gem for my Heroku application. rake assets:precompmile creates: 1) a regular version of the static asset and 2) a gzipped version of ...
0
votes
1answer
32 views

rake assets:precompile compiling everything twice

I'm having some trouble with Rails assets pre-compilation that I've never come across before. When running rake assets:precomile in this app I'm seeing every asset getting compiled twice. If I tail ...
2
votes
0answers
69 views

Images don't resolve correctly using Rails asset pipeline in development mode

TL;DR asset_data_uri works but asset_path does not. I recently switched from a homegrown + jammit asset pipeline over to the Rails asset pipeline in hopes that I could ditch a bunch of code and have ...
0
votes
1answer
37 views

Javascript works directly from view, but not when included in asset pipeline

What am I missing to get my javascript working via the asset pipeline? When I try using jQuery chained to work through the assets, it doesn't work properly, however when I put the javascript function ...
0
votes
2answers
22 views

rails assets precompile css order

I'm using zurb with rails. I overrode some of zurbs default css by adding changes to app/assets/stylesheets/application.css But precompilation seems to append all the other css files to this one. Is ...
0
votes
1answer
22 views

Plesk vs rails3 assets

I took over a clumsily-installed Rails app. Its assets are broke. Chrome Audit returns: > Leverage browser caching The following resources are missing a cache expiration. Resources that do not ...
0
votes
1answer
21 views

Use Javascript in Rails

I just started to learn javascript and want to use it in Rails. The javascript code is very simple, mainly for experiment: var pageAlert = function(){ alert("This is working");} ...
1
vote
0answers
17 views

Assets not loading on a subdomain

I have a subdomain setup in my routes.rb as follows: scope constraints: { subdomain: 'advertiser' } do root to: 'static#sub_index' end When I navigate to this page I get 404 errors for all ...
0
votes
0answers
17 views

Using @media rules to define printable styles

I was styling my resume/portfolio and realized it would be handy to have a good print stylesheet. My resume uses a two column layout, and it turns out to be too wide for the printed page. So I decided ...
2
votes
2answers
42 views

Asset pipeline precompiled localy with Rails 3.2.9

I'm using Rails 3.2.9 and I precompiled my asset pipeline localy before the application deploy (with Capistrano) and it works good. I used: bundle exec rake assets:precompile In "config" directory ...
0
votes
1answer
18 views

Rails 3: assets pipeline + many layouts

I have a huge project with rails 3.1 (without assets pipeline). This project has a lot of different layouts, for example: application home console And etc. Each layout has a huge list of js and ...
0
votes
1answer
30 views

Asset is not precompiled in RoR Openshift app

I have a Ruby on Rails OpenShift application (ruby 1.9, Rails Rails 3.2.13), working without problems in development environment. However, when I deploy the application to OpenShift, I get the ...
0
votes
1answer
30 views

Heroku precompile assets failed on Rail 4 app

I set config.assets.initialize_on_precompile = false in the application.rb. Assets were precompiled successfully locally by run RAILS_ENV=production bundle exec rake assets:precompile While the ...
0
votes
1answer
23 views

Backbone template variables only working with if I use this in template

In my template I have to put this.name and this.gravatar to access my user model data attributes. If I don't I get an error message when the template attempts to render. Everything works but I don't ...
1
vote
2answers
90 views

Precompiling Assets Failure During Deployment

I am using Capistrano to precompile my assets during deployment, and I am getting an error that isn't very useful to me. * executing "cd -- path/to/releases/20130507161214 && bundle exec rake ...
0
votes
0answers
24 views

Requirejs, asset pipeline

I'm using Backbone with Requirejs. On development machine everything works correctly, however I can't get it to work on production. I'm using requirejs-rails gem with requirejs.yml such configuration: ...
0
votes
0answers
13 views

How do I keep compiled assets when rake fails so I can debug?

I have a bug that I am trying to track down, but it is proving difficult. When I run: $ bundle exec rake assets:precompile I get the following error: rake aborted! Invalid CSS after "}": expected ...
7
votes
1answer
149 views

Why did Rails4 drop support for “assets” group in the Gemfile

In Rails 3, gems used exclusively to generate assets in the asset pipeline were properly placed in the assets group of the Gemfile: ... # Gems used only for assets and not required # in production ...
0
votes
1answer
57 views

Rails ignoring precompiled assets in S3, “could not find file 'bootstrap'”

I'm precompiling assets locally and pushing them to S3. In production I get this error: heroku[router]: at=info method=GET path=/ host=www.someapp.org fwd="76.87.106.226" dyno=web.1 connect=2ms ...
0
votes
1answer
45 views

Javascript not working on Production Rails page due to JS library error?

I have some simple javascript to hide and show blocks of text on my webpage which used to work fine. I recently placed a new javascript library in assets/javascripts to create other visual effects on ...
0
votes
1answer
15 views

Rails Asset Pipeline loads all files

I have multiple files in my app/assets/javscripts folder, application.js.erb, page.js.erb, sections.js.erb & scraped.js.erb. Rails loads them all in my layout with <%= javascript_include_tag ...
0
votes
0answers
25 views

Rails Engine Override Asset Path

My main Rails 3.2 app includes a custom Rails Engine packaged as a gem that shares some common SCSS and font files. Requiring those JS and SCSS files using require in our main app's application.scss ...
2
votes
1answer
94 views

ExecJS coffee script not showing line numbers for compile errors (Rails asset pipeline)

In one of my Rails apps, ExecJS is not showing line numbers for coffeescript compilation errors. My compile error message will look like this: ExecJS::RuntimeError in Referrals#new Showing ...
0
votes
1answer
12 views

Rails assets precompilation removes functions from global scope (TypeError: object is not a function). How to get them back?

I have such a js code: function Global(params) { ... } var g = { onDocLoad: function() { // on DOM load I instantiate the Global function-constructor // which is above this line, ...
0
votes
0answers
25 views

What exactly “config.assets.debug” setting does?

I have started development of simple rails application. After several hours work I have notices that somehow the deleted css is still applied to the web pages. In order to fix the issue I executed ...
0
votes
1answer
33 views

Rails 3.1 Asset Pipeline Javascript - specifying page load though jQuery ->

This is causing me a lot of frustration. I'm hoping someone can help me out. In my application.js file I have the following: //= require jquery //= require jquery_ujs //= require ...
0
votes
2answers
51 views

Rails 4 Asset Pipeline not combining or minifying assets

I started playing with Rails4 and I can't get the asset pipeline to work correctly. My site is loading fine in my staging environment, except that none of my css or js is being combined or minified as ...
0
votes
0answers
27 views

Handling audio assets in Rails 3.2 with audio_* helpers

I'm trying to include audio files to the asset pipeline in my Rails 3.2 app and reference them with the help of the audio_* helper methods, but it doesn't work like I think it should work: I have a ...
1
vote
3answers
47 views

Why do I need to precompile Rails assets on app servers and not web servers only?

I'm deploying a simple Rails app to this small ubuntu precise64 server setup : * 1 web server running nginx * 2 app servers running unicorn * 1 db server running postgresql My servers are ...
1
vote
1answer
26 views

Seemingly Simple js plugin for rails app

I'm trying to setup alertify in my rails project without using any gems and I'm not able to get a hello world implementation working. I've spent over half a day on this and not sure why. In ...
2
votes
1answer
20 views

How do I verify that all my assets are precompiled

I recently ran into this error: ActionView::Template::Error (costa rica.png isn't precompiled): Now I know how to fix this particular issue (and others like it), but it's sort of a pain to have to ...
0
votes
1answer
30 views

asset_path - fonts not applied

I am trying to load some additional fonts in my rails application using: Jruby 1.7.3 Rails 3.2.13 The css (its type is css.scss.erb) document is in app/assets/stylesheets/custom/ folder and looks ...
0
votes
1answer
40 views

Rails 3.2 Deploy to Subdirectory Kind of Working

I am trying to deploy my Rails 3.2 app to a subdirectory, /support, on an Apache server. Consulting the various posts, the only solutions that seem to have helped involve setting up a symbolic link on ...
6
votes
2answers
103 views

When testing, do I have to precompile assets every time I adjust Javascript files in Rails 3.2?

I'm trying to learn TDD and BDD and do it the right way. The stack I'm using ( or trying to use, Spork doesn't work with Guard for me) is Minitest-Guard-Spork-Capybara. I am focusing on Unit Tests for ...
0
votes
1answer
25 views

rails css manifest file skips directives

rails newbie here. Can't get development machine to process *= require ... in application.css manifest file. In development.rb I have config.assets.compress = false config.assets.compile = true ...
0
votes
2answers
20 views

Keep running into asset precompile error in my css…not sure why

I keep getting errors like so when precompiling assets: Invalid CSS after "...margin-left:1px": expected "{", was ";line-height:16..." so I found an error in the css, which was it said ...
0
votes
2answers
41 views

How do you tell Rails / the asset pipeline that a js.erb depends on a YAML file?

I have a js.erb file that loads YAML from a config file. The problem is that Rails / the asset pipeline will cache the results and never invalidate that cache, even when I change the YAML file ...
1
vote
2answers
31 views

Non global coffee script and asset pipeline

I have a coffee script user.js.coffee, that is only used in certain views. I achieved this by using the following answer: http://stackoverflow.com/a/6795533/784318 Now I have excluded the script ...

1 2 3 4 5 28