2
votes
1answer
122 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
38 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 ...
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 ...
0
votes
1answer
72 views

Fail assets compile when deploying to Heroku

I want to deploy my Rails app to heroku but assets compile fails. In local environment, it works well. Your bundle is complete! It was installed into ./vendor/bundle Cleaning up the ...
0
votes
0answers
38 views

Rails Asset Pipeline and Conditionizr

I am integrating Conditionizr into a current project and I want some of my javascript files to only be loaded/used in certain conditions of Conditionizr. Is it correct to do the following: Remove ...
0
votes
1answer
149 views

Rails path-helpers doesn't work in js.coffee.erb

In my Rails 3.2 app (Ruby 1.9) I get following error when using path helpers in Coffeescript. undefined local variable or method `new_user_session_path' In my partial _usermenu.html.haml that works ...
2
votes
1answer
129 views

Custom coffeescript in Rails asset pipeline

I created a small custom javascript file with a function definition in app/assets/javascripts/custom.js round_number = function(num, dec) { return Math.round(num * Math.pow(10, dec)) / Math.pow(10, ...
-1
votes
1answer
69 views

Encapsulate javascript for an embedded widget

I have a javascript file that users can embed on their site. It uses coffeescript and the Rails asset pipeline to compile a bunch of files into one. # The following dependencies will be compiled ...
0
votes
0answers
125 views

coffeescript file suddenly stopped working rails 3.2

I'm having an issue with rails and the asset pipeline. I was writing coffeescript in my users.js.coffeescript file, and it worked fine. However after I merged my changes from my branch back to my ...
0
votes
0answers
117 views

Free standing function in coffeescript in Rails 3.2.8

I've recently started using coffeescript in my rails projects pretty heavily. I'm curious how you make a free standing function. So if I do: foo = -> alert("hello world") That compiles to ...
0
votes
1answer
103 views

Ruby on Rails per page javascript not executed

I have 2 controllers (lets say Users and Products), but Javascript does not get executed on the second controller. My application.js file: //= require jquery //= require jquery_ujs //= require_tree ...
0
votes
2answers
242 views

Rails and codekit - how to disable rails coffescript compilation

I'm using rails 3.2, but I'm compiling my coffee files with CodeKit. I still want my coffee files to live inside 'assets', but each time I restart rails, it finds them in there and tries to compile ...
1
vote
1answer
176 views

Three jquery coffeescript functions conflicting with one another

I'm a relative amateur at coffeescript/javascript, but I'm having trouble figuring out how to structure it so that three different functions (two Select2 functions and one function to load Best in ...
0
votes
1answer
525 views

How to develop with coffee script with rails

I've been thinking about CoffeeScript lately, and I just upgraded a Rails project I've been working on to Rails 3.2.8 (from Rails 3.0.9 which didn't have the asset pipeline) following this guide. I ...
1
vote
0answers
173 views

Rails asset pipeline & coffeescript files, how to bind actions in various files to ajax calls?

Using rails 3 asset pipeline, I've structured the javascript (by using coffeescript) to files regarding the model. For example, all comment writing related javascript is stored to ...
0
votes
1answer
319 views

Rails asset pipeline with foo.js and foo.js.coffee (empty) results in JS loop. Why?

The following is not a problem per se, because it can be avoided by not using the same name for two asset pipeline files. I am simply curious about an explanation, so thanks for any insight. This is ...
4
votes
1answer
186 views

Rails - Inline scss file in Javascript

I am on Rails 3.2 with assets pipeline. I'd like to inline some minified css in a javascript string (to dynamically include it from a JS library I'm writing). My css is written using scss and my js ...
0
votes
1answer
88 views

wierd issue for assets /caching in rails

I have 3 instances of my rails app(built in Rails 3.1) say dev, My app is working perfect in dev instance , But in stage,and QA, I am getting a weird issue. The issue is that my coffee script view ...
2
votes
1answer
660 views

Why are changes to coffeescript files not being compiled when my Rails 3.2.0 app is in development mode?

Normally, any changes I make to .js.coffee files in my Rails 3.2.0 app in development mode take effect when I refresh the page. All of a sudden, this is not happening. If I do rake assets:precompile, ...
1
vote
1answer
177 views

Rails 3.x asset pipeline including coffeescript file in view

I have recently came across where I would like to simply just include a coffeescript file in a single Rails view, but when you use the javascript_include_tag it appends .js to the end of the name you ...
0
votes
1answer
531 views

Coffeescript import and organization for Rails

I'm building a Rails application that is almost entirely CoffeeScript upfront. The user will never wait for a page redirect because literally everything happens on the front page (a la Twitter). Now ...
0
votes
0answers
121 views

Rails jQuery + Coffeescript based assets pipeline vs XHR requests

Getting latest Rails (3.2) we have three major changes from 3.0: jQuery as default js-framework and no html-helpers for in-controller xhr response generating we have an assets-pipeline idea of ...
4
votes
1answer
221 views

How can I fix this bizarre LoadError error produced by coffeescript/asset pipeline?

I'm using the Rails 3 asset pipeline. I got into a situation where I needed to order my Javascript files in a specific way so I added them all explicitly to application.js like this: //= require ...
0
votes
2answers
181 views

assets pipeline control coffee script's closures

I have 2 simple coffee scripts and assets pipeline. I obtained: (function() { window.App.Test_widget = {...} }).call(this); (function() { $.widget("ui.Test_widget", window.App.Test_widget); ...
0
votes
1answer
595 views

How to prevent Rails 3.2.2 to create a .js file everytime I change a .coffee file in the assets/javascripts/ directory

Every time I change a .coffee file in the development mode, Rails creates a corresponding .js file in the same /javascripts directory. With the result that Rails ends up processing both the files and ...
0
votes
1answer
269 views

asset pipeline InternalError: too much recursion

i m in troubles :) Im trying to deploy an app with rails 3.2.1 and coffee-rails 3.2.2, but when the assets compilation occure, i get an internal error *** [out :: ] Compiling: coffee-script.js *** ...
4
votes
1answer
346 views

How to add action specific asset pipeline items?

I am writing a Rails 3.2.1 application and I have some javascript code I'd like to put in for a single action view. It simply calls a jquery plugin and starts a countdown, but I'd like to write it in ...
0
votes
1answer
563 views

CoffeeScript and erb : require variable file

In my rails 3.1 App, I have 3 different javascript files for my html table. Let say, table1.js.coffee, table2 and table3. In my application.js file, I have : // = require table And in my ...
0
votes
2answers
456 views

interpreting coffeescript in a layout

I am adding some view specific .js code to the header of the page using content_for like so <% content_for :head do %> <script lang="text/javascript"> $.getJSON("<%= ...
2
votes
1answer
287 views

I get this error when I have coffeescript files in my assets/javascript folder

I get the following error when I have coffeescript files in my assets/javascript folder ExecJS::RuntimeError in Users/sessions#new If I remove the coffee script files, everything works ...
0
votes
2answers
122 views

Ruby Javascript and Assets

I am trying to add my first bit of javascript into my rails application and so to test it in my app/assets/javascripts/users.js.coffee I added the lines: square = (x) -> x * x alert square(10) ...
2
votes
2answers
327 views

What's the best way to selectivly run javacript when using the rails asset pipeline?

The rails asset pipeline has it's issues, but the benefits of concatenating all my JS, minifying it and serving it with far-future expires headers are hard to ignore. Lots of the JS in my rails app ...
1
vote
1answer
743 views

Uncaught ReferenceError when using the asset pipeline and pjax

Ok, this this sounds like a newbie mistake... but I can't seem to figure out what's going on. I'm relatively new to Rails 3.1, coffeescript and the asset pipeline in general, so I'm having a bit of ...
0
votes
1answer
246 views

How do I add a boilerplate comment or license to the top of a JavaScript file compiled using the Rails 3.1 Asset Pipeline?

I am using the Asset Pipeline to build some JavaScript that will be handed over to a number of third party developers. I want to place a warning comment at the top of the generated (and possibly ...
2
votes
2answers
222 views

Does rails 3.1 include the entire jQuery library?

I have been really puzzled because I was trying to work out some jQuery tutorials in coffeescript for rails 3.1 and it seems like none of the animation functions of jquery work. For example, this ...
2
votes
2answers
1k views

Why are the ActionView::Helpers::UrlHelper not available in the assets pipeline?

In ajax heavy applications having a javascript/coffeescript file that is aware of the routes in a rails application seems common and reasonable. Yet it is not easy access the url_for helper in your ...
1
vote
1answer
894 views

Why might rails 3.1 not evaluate erb before coffeescript in a .js.coffee.erb file?

I have a file in my rails 3.1 project called: foo.js.coffee.erb console.log <?= 1+1 ?> This causes: throw Error("ExecJS::ProgramError: Error: Parse error on line 1: Unexpected ...
4
votes
1answer
3k views

ExecJS problem compiling Rails 3.1 assets

My Rails 3.1.rc4 app was working fine, but I'm trying to figure out the appropriate way to store my js files in the pipeline. If I put any code in a file other than application.js, I get the following ...
0
votes
2answers
431 views

What is a good way to separate concerns with CoffeeScript and Ruby on Rail's asset pipeline?

TLDR: What can you do to combine multiple CoffeeScript files into one JS file, in RoR, all under the same anonymous function block? Long version: I have a few CS files that will be loaded for part ...