Source
/controllers/nature/parks_controller.rb
class Nature::ParksController < ApplicationController
active_scaffold
end
/models/park.rb
class Park < ActiveRecord::Base
has_many :dens
has_many :bears, :through => :dens
end
/helpers/nature/parks_helper.rb
module Nature::ParksHelper
end