actions_as_commentable:ActiveRecord acts_as_commentable插件 源码
表现为可评论 提供单个注释模型,该模型可以附加到应用程序中的任何模型。 它创建一个Comment模型,并处理该模型与您声明为可注释模型的任何模型之间的关系。 安装: 将以下行添加到您的Gemfile中 Rails gem 'acts_as_commentable' Rails gem 'acts_as_commentable' , '3.0.1' Rails gem 'acts_as_commentable' , git: 'git@github.com:jackdempsey/acts_as_commentable.git' , branch: '2.x' 生成器 Rails 3+ rails g comment Rails script/generate comment 然后迁移数据库以添加注释模型: rake db: migrate 用法 使所需的
用户评论