[update: by not using rake routes, just to understand Rails console a little more]
rake routes
It seems like inside of \"rails console\" for Rails 3, w
helpers = Rails.application.routes.named_routes.helpers
This will get you all the named route methods that were created. Then you can do helpers.map(&:to_s), and whatever regex you want to get your foo versions
helpers.map(&:to_s)