Skip to content

Instantly share code, notes, and snippets.

@braindeaf
Created February 26, 2009 13:29
Show Gist options
  • Save braindeaf/70842 to your computer and use it in GitHub Desktop.
Save braindeaf/70842 to your computer and use it in GitHub Desktop.
Extracting routes in the same format as they are declared
routes = []
ActionController::Routing::Routes.routes.each do |route|
routes << route.segments.inject('') { |str,s| str << s.to_s }
end
routes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment