public
Description: Make your Rails routes available to Javascript
Homepage:
Clone URL: git://github.com/rlivsey/js_routes.git
name age message
file .DS_Store Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
file README.markdown Thu Jan 22 03:35:31 -0800 2009 fix layout of readme [rlivsey]
file Rakefile Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
file init.rb Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
file install.rb Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
directory lib/ Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
directory tasks/ Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
directory test/ Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
file uninstall.rb Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
directory views/ Thu Jan 22 03:16:59 -0800 2009 import from svn into git [rlivsey]
README.markdown

JsRoutes

Note this is a fairly old plugin, js_named_routes is a more up to date and fully featured take on the same problem.

Include '/javascripts/js_routes.js' in your HTML and it makes your routes available in javascript.

<%= javascript_include_tag :js_routes %>

In rails:

message_url(@message, :format => 'js')

Javascript:

var message_id = 1;
message_url(message_id, {format: 'js'})

These are built on the fly, to cache them for production run the task:

$rake js_routes:cache