Does Rails 3 have an equivalent to MVC3 Areas? I think I came across it previously but cannot find any information on it now.
You can use namespace feature, described in routes.rb
# Sample resource route within a namespace:
namespace :admin do
# Directs /admin/products/* to Admin::ProductsController
# (app/controllers/admin/products_controller.rb)
resources :products
end