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.