If you do with rails 3, you may have something similar on your routes.
resource :users do
match "method", :on => :collection
end
this will create you method_users_path. Alternatively, you can use post / get instead of matching if you want to be a specific type of request. Learn more about rails routing here.
Update
:collection, .
, - , - .
, users_path
:member, , , edit_user_path(@user), .