Sha256: cc092203d29fbff0e9d679f5938f67aeb653a6dd7b143ae36300af8e0a4c73b1
Contents?: true
Size: 297 Bytes
Versions: 47
Compression:
Stored size: 297 Bytes
Contents
module BulkPostsForm class Base include ObjectAttorney has_many :posts end class Explicit include ObjectAttorney has_many :posts def build_post(attributes = {}) ::Post.new(attributes) end def existing_posts ::Post.all end end end
Version data entries
47 entries across 47 versions & 1 rubygems