Created
February 13, 2010 00:03
-
-
Save alg/303127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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