Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 Rails3.2 应用程序。是否有任何宝石可以跟踪个人资料查看者,这意味着谁在查看我们的个人资料。
谢谢
写起来很简单,你需要gem吗?只需添加适当的
before_filter :add_visit, only: :show
在您的 UsersController 中(或您如何命名它)。
此外,此 railscast可能很有用。