Automatically generated Javascript URL helpers based on your Rails routes.
user GET /users/:id(.:format) users#show
Let's say you have this Rails route. Here's how you would access it in Javascript with cone:
cone.userPath({ id: 12 });
"/users/12"
cone.userPath({ id: 12, format: 'json' });
"/users/12.json"
cone.userPath({ id: 12, format: 'json', foo: 'bar baz' });
"/users/12.json?foo=bar%20baz"
cone.userPath({ id: 12, foo: 'bar baz', anchor: 'foo' });
"/users/12?foo=bar%20baz#foo"
Reload the server whenever your routes change to have the Javascript regenerated.
- Add gem 'cone' to your Gemfile.
- Run bundle install.
- Add //= require cone to your Javascript manifest file (usually found at app/assets/javascripts/application.js).
- Restart your server.