
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Removing the cruft, bringing the HTTP method to the forefront and sporting a neat DRYing block syntax--FancyRoutes is a layer on top of the Rails routing system which provides an elegant API for mapping requests to your application's controllers and actions.
Take for example the following routes from one of Myles' applications:
map.connect '/orders', :controller => 'orders', :action => 'index, :conditions => { :method => :get }
map.connect '/:slug/order', :controller => 'orders', :action => :show, :conditions => { :method => :get }
map.connect '/:slug/order', :controller => 'orders', :action => :create, :conditions => { :method => :post }
map.connect 'item_images/:image', :controller => 'item_images', :action => 'show', :conditions => { :method => :get }
Converted to fancyroutes these now look like:
get / 'orders' >> :orders > :index
with route / :slug / 'order' >> :orders do
get > :show
put > :update
end
get {'item_images' => :controller} / :image > :show
So fancy!
We use three of Ruby's operators to define paths:
/
separates the segments>>
indicates the controller>
indicates the actionSegments of the path can be strings or symbols. Symbols, such as :image
, define parameters and strings, such as 'order'
, define static segments.
Quite often the controller name will already be in the path itself.
map.connect '/playground/:action', :controller => 'playground'
Don't repeat yourself! Provide a hash instead:
get / {'playground' => :controller} / :action
Simply suffix the get/post/put/delete with the name:
page.get / '*tree' >> :pages > :show
Now you can generate a path with the route:
page_path(["help", "where-is-the-any-key"])
Use with route
to DRY up similar routes. For example:
get / :slug / 'order' >> :orders > :show
put / :slug / 'order' >> :orders > :update
can be rewritten as:
with route / :slug >> :orders do
get / 'order' > :show
put / 'order' > :update
end
or even better:
with route / :slug / 'order' >> :orders do
get > :show
put > :update
end
A standard root route looks something like this:
map.root :controller => 'homepage', :action => 'index'
The fancier version is:
root >> :homepage > :index
Install the gem:
sudo gem install tred-fancyroutes
add the dependency in your environment.rb:
config.gem 'tred-fancyroutes'
and then use the FancyRoutes method in your routes.rb:
ActionController::Routing::Routes.draw do |map|
FancyRoutes(map) do
# the
# fanciest
# routes
# you
# ever
# did
# see
end
end
Copyright (c) 2008-09 The TRED Team
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Unknown package
We found that tred-fancyroutes 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
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.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.