0.0
No commit activity in last 3 years
No release in over 3 years
allows accepts_nested_attributes_for in models
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

MongoMapper extension for accepts_nested_attributes


Installation:

gem install mm-nested-attrs

Using:

In your parent class:

class Parent
  include MongoMapper::Document
  plugin MongoMapper::Plugins::Associations::NestedAttributes
  accepts_nested_attributes_for :images, :allow_destroy => true, :reject_if => lambda { |t| t['img'].blank? }
end

In Gemfile

 gem 'mm-nested-attrs'