
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
asset_pipeline_routes
Advanced tools
asset_pipeline_routes
defines a r
shorthand function which you can use inside your javascript assets.
Assuming you got a routes.rb
with:
resources :users # => yields multiple routes, e.g. /users/:id(.:format)
Inside your javascript assets you can now write:
r(users_path) // => yields '/users'
r(user_path) // => yields '/users/{{id}}'
r(user_path, userId) // => yields '/users/'+userId
It works with coffeescript as well:
promise = $.rails.ajax({
url: r(user_path, userId)
})
If you are compiling client side templates with the rails asset pipeline this works inside templates as well, e.g.
%form{ action: r(user_path) }
will generate
<form action='/users/{{id}}'></form>
v0.2 introduced code breaking changes! THIS WILL NO LONGER WORK
// inside application.js.erb
var url = '<%= r.user_path 42 %>';
Instead, you can now drop the .erb
extension and use r inline:
var url = r(user_path, 42);
You can run the test suite locally using the following commands:
$ gem install bundler
$ cd /path/to/local/asset_pipeline_routes
$ bundle install
$ bundle exec rake spec
Whatever you do, make sure the tests stay green ;)
Copyright © 2011-2013 Raphael Randschau nicolai86@me.com
asset_pipeline_routes is distributed under an MIT-style license. See LICENSE for details.
FAQs
Unknown package
We found that asset_pipeline_routes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.