Module: Mongoid::Persistable::Creatable::ClassMethods
- Defined in:
- lib/mongoid/persistable/creatable.rb
Overview
Instance Method Summary collapse
-
#create(attributes = nil, &block) ⇒ Document+
Create a new document.
-
#create!(attributes = nil, &block) ⇒ Document+
Create a new document.
Instance Method Details
#create(attributes = nil, &block) ⇒ Document+
Create a new document. This will instantiate a new document and insert it in a single call. Will always return the document whether save passed or not.
145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/mongoid/persistable/creatable.rb', line 145 def create(attributes = nil, &block) _creating do if attributes.is_a?(::Array) attributes.map { |attrs| create(attrs, &block) } else doc = new(attributes, &block) doc.save doc end end end |
#create!(attributes = nil, &block) ⇒ Document+
Create a new document. This will instantiate a new document and insert it in a single call. Will always return the document whether save passed or not, and if validation fails an error will be raise.
174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/mongoid/persistable/creatable.rb', line 174 def create!(attributes = nil, &block) _creating do if attributes.is_a?(::Array) attributes.map { |attrs| create!(attrs, &block) } else doc = new(attributes, &block) doc.fail_due_to_validation! unless doc.insert.errors.empty? doc.fail_due_to_callback!(:create!) if doc.new_record? doc end end end |