requirejs-rails
requirejs-rails copied to clipboard
RequireJS support for your Rails 3 or 4 application
We should lay out a dead-easy path to get [Jasmine tests](http://pivotal.github.com/jasmine/) or [Buster.js tests](http://busterjs.org/) up and running.
my requirejs modules work very well in development but lota of problems after deploy. the core issue is due to the abent of jquery since jquery pop up the error...
v0.9.5 is available, but git tags only show up to 0.9.1.
I think I'm misunderstanding the `modules` node in `requirejs.yml`. The documentation says: > Pulled in via a dynamic require() call. Modules which are solely referenced by a dynamic require() call...
Hey, Lately, I've noticed that you removed `data-main` entry point from the gem. Since that, you cannot use **skipDataMain** anymore (http://requirejs.org/docs/api.html#config-skipDataMain) because this attribute doesn't exist and you will always...
Hi @jwhitley, first of all thanks for your work on this project, it's been working great for me. One thing I'm having trouble with though is using [map](http://requirejs.org/docs/api.html#config-map) in almond...
With configuration params embedded as strings into the "requirejs.yml" file (which gets loaded once when the server starts), how do you provide a dynamic `urlArgs: "bust=" + Date.now()` configuration param...
I am having an annoying issue Rails 3.2.3. The project is set up to use the assets pipeline for some files, and RequireJS is setup separately to handle modules. In...
This appears to have been caused by https://github.com/jwhitley/requirejs-rails/commit/546c0a951b050039a525122487f047478db07ed5. We have `` in our html, and so `RequirejsHelper#baseUrl` gets called with nil, which causes `javascript_path(nil)` to call `asset_for(".js")` which ultimately fails...
In my production environment, the only way I can get our assets to compile into a single file is by setting `config.assets.digest` to `false`. This is not ideal because 1....