Skip to content

Instantly share code, notes, and snippets.

@alg
Created February 13, 2010 00:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alg/303127 to your computer and use it in GitHub Desktop.
Save alg/303127 to your computer and use it in GitHub Desktop.
ActionController::Routing::Routes.draw do |map|
map.with_options :controller => "static_pages" do |pages|
%w( faq about privacy terms_and_conditions ).each do |page|
pages.send(page, page, :action => page)
end
end
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment