how can I take the advantage of scaffolding?

Gary Liang wrote:

e.g.

class AdminController < ApplicationController UsersController usersController = new .... usersController.action

end

class UsersController < ApplicationController ....... end

How RoR handle this?

You can do that by doing something like this:

class UsersController < ApplicationController

   def user_method    end

end

class AdminController < ApplicationController

   def admin_method      user = UsersController.new      retvalue = user.user_method    end

end

but generally I believe the recommended way for "sharing" methods between controllers is to put stuff in application.rb or create a module and mix that in to the controllers that need it.

It will be easier to discuss solutions if you give us some more details about how you want your app to behave (rather than picking a particular syntax and asking if that syntax can do this or that aspect of what you want).

Shauna