Спасибо намек Дэвид Лёд Я решил это!
Вот мой код:
хелпер-метод
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
def routes_url
routes = ActionController::Routing::Routes.routes.collect do |route|
segs = route.segments.inject("") { |str,s| str << s.to_s }
segs.chop! if segs.length > 1
segs.chomp("(.:format)")
end
routes.delete_if {|x| x.index(':id')}
return routes.compact.uniq.sort
end
end
и на мой взгляд я поставил:
<%= select("page", "url", options_for_select(routes_url), {:include_blank => true}) %>