mongoid_heroku_stable 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3235 -0
- data/LICENSE +20 -0
- data/README.md +62 -0
- data/Rakefile +35 -0
- data/lib/config/locales/en.yml +452 -0
- data/lib/mongoid.rb +104 -0
- data/lib/mongoid/atomic.rb +384 -0
- data/lib/mongoid/atomic/modifiers.rb +317 -0
- data/lib/mongoid/atomic/paths.rb +3 -0
- data/lib/mongoid/atomic/paths/embedded.rb +28 -0
- data/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
- data/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
- data/lib/mongoid/atomic/paths/root.rb +39 -0
- data/lib/mongoid/attributes.rb +305 -0
- data/lib/mongoid/attributes/dynamic.rb +154 -0
- data/lib/mongoid/attributes/nested.rb +82 -0
- data/lib/mongoid/attributes/processing.rb +147 -0
- data/lib/mongoid/attributes/readonly.rb +56 -0
- data/lib/mongoid/changeable.rb +379 -0
- data/lib/mongoid/composable.rb +104 -0
- data/lib/mongoid/config.rb +263 -0
- data/lib/mongoid/config/environment.rb +44 -0
- data/lib/mongoid/config/options.rb +74 -0
- data/lib/mongoid/config/validators.rb +3 -0
- data/lib/mongoid/config/validators/option.rb +25 -0
- data/lib/mongoid/config/validators/session.rb +140 -0
- data/lib/mongoid/contextual.rb +54 -0
- data/lib/mongoid/contextual/aggregable/memory.rb +109 -0
- data/lib/mongoid/contextual/aggregable/mongo.rb +145 -0
- data/lib/mongoid/contextual/atomic.rb +180 -0
- data/lib/mongoid/contextual/command.rb +61 -0
- data/lib/mongoid/contextual/eager.rb +158 -0
- data/lib/mongoid/contextual/find_and_modify.rb +69 -0
- data/lib/mongoid/contextual/geo_near.rb +238 -0
- data/lib/mongoid/contextual/map_reduce.rb +324 -0
- data/lib/mongoid/contextual/memory.rb +440 -0
- data/lib/mongoid/contextual/mongo.rb +676 -0
- data/lib/mongoid/contextual/queryable.rb +25 -0
- data/lib/mongoid/contextual/text_search.rb +180 -0
- data/lib/mongoid/copyable.rb +67 -0
- data/lib/mongoid/criteria.rb +562 -0
- data/lib/mongoid/criteria/findable.rb +179 -0
- data/lib/mongoid/criteria/inspectable.rb +25 -0
- data/lib/mongoid/criteria/marshalable.rb +50 -0
- data/lib/mongoid/criteria/modifiable.rb +189 -0
- data/lib/mongoid/criteria/scopable.rb +158 -0
- data/lib/mongoid/document.rb +361 -0
- data/lib/mongoid/equality.rb +66 -0
- data/lib/mongoid/errors.rb +41 -0
- data/lib/mongoid/errors/ambiguous_relationship.rb +51 -0
- data/lib/mongoid/errors/callback.rb +25 -0
- data/lib/mongoid/errors/delete_restriction.rb +29 -0
- data/lib/mongoid/errors/document_not_found.rb +111 -0
- data/lib/mongoid/errors/eager_load.rb +22 -0
- data/lib/mongoid/errors/invalid_collection.rb +18 -0
- data/lib/mongoid/errors/invalid_config_option.rb +27 -0
- data/lib/mongoid/errors/invalid_field.rb +64 -0
- data/lib/mongoid/errors/invalid_field_option.rb +35 -0
- data/lib/mongoid/errors/invalid_find.rb +19 -0
- data/lib/mongoid/errors/invalid_includes.rb +32 -0
- data/lib/mongoid/errors/invalid_index.rb +28 -0
- data/lib/mongoid/errors/invalid_options.rb +28 -0
- data/lib/mongoid/errors/invalid_path.rb +21 -0
- data/lib/mongoid/errors/invalid_scope.rb +24 -0
- data/lib/mongoid/errors/invalid_set_polymorphic_relation.rb +38 -0
- data/lib/mongoid/errors/invalid_storage_options.rb +27 -0
- data/lib/mongoid/errors/invalid_time.rb +22 -0
- data/lib/mongoid/errors/invalid_value.rb +16 -0
- data/lib/mongoid/errors/inverse_not_found.rb +29 -0
- data/lib/mongoid/errors/mixed_relations.rb +32 -0
- data/lib/mongoid/errors/mixed_session_configuration.rb +28 -0
- data/lib/mongoid/errors/mongoid_error.rb +92 -0
- data/lib/mongoid/errors/nested_attributes_metadata_not_found.rb +28 -0
- data/lib/mongoid/errors/no_default_session.rb +23 -0
- data/lib/mongoid/errors/no_environment.rb +19 -0
- data/lib/mongoid/errors/no_map_reduce_output.rb +24 -0
- data/lib/mongoid/errors/no_metadata.rb +21 -0
- data/lib/mongoid/errors/no_parent.rb +24 -0
- data/lib/mongoid/errors/no_session_config.rb +22 -0
- data/lib/mongoid/errors/no_session_database.rb +27 -0
- data/lib/mongoid/errors/no_session_hosts.rb +27 -0
- data/lib/mongoid/errors/no_sessions_config.rb +20 -0
- data/lib/mongoid/errors/readonly_attribute.rb +25 -0
- data/lib/mongoid/errors/scope_overwrite.rb +21 -0
- data/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
- data/lib/mongoid/errors/unknown_attribute.rb +25 -0
- data/lib/mongoid/errors/unsaved_document.rb +19 -0
- data/lib/mongoid/errors/unsupported_javascript.rb +27 -0
- data/lib/mongoid/errors/validations.rb +29 -0
- data/lib/mongoid/evolvable.rb +19 -0
- data/lib/mongoid/extensions.rb +35 -0
- data/lib/mongoid/extensions/array.rb +180 -0
- data/lib/mongoid/extensions/big_decimal.rb +69 -0
- data/lib/mongoid/extensions/boolean.rb +21 -0
- data/lib/mongoid/extensions/date.rb +77 -0
- data/lib/mongoid/extensions/date_time.rb +73 -0
- data/lib/mongoid/extensions/false_class.rb +38 -0
- data/lib/mongoid/extensions/float.rb +56 -0
- data/lib/mongoid/extensions/hash.rb +209 -0
- data/lib/mongoid/extensions/integer.rb +67 -0
- data/lib/mongoid/extensions/module.rb +28 -0
- data/lib/mongoid/extensions/nil_class.rb +33 -0
- data/lib/mongoid/extensions/object.rb +274 -0
- data/lib/mongoid/extensions/object_id.rb +54 -0
- data/lib/mongoid/extensions/range.rb +85 -0
- data/lib/mongoid/extensions/regexp.rb +27 -0
- data/lib/mongoid/extensions/set.rb +55 -0
- data/lib/mongoid/extensions/string.rb +199 -0
- data/lib/mongoid/extensions/symbol.rb +54 -0
- data/lib/mongoid/extensions/time.rb +88 -0
- data/lib/mongoid/extensions/time_with_zone.rb +56 -0
- data/lib/mongoid/extensions/true_class.rb +38 -0
- data/lib/mongoid/factory.rb +46 -0
- data/lib/mongoid/fields.rb +542 -0
- data/lib/mongoid/fields/foreign_key.rb +174 -0
- data/lib/mongoid/fields/localized.rb +73 -0
- data/lib/mongoid/fields/standard.rb +273 -0
- data/lib/mongoid/fields/validators.rb +2 -0
- data/lib/mongoid/fields/validators/macro.rb +92 -0
- data/lib/mongoid/findable.rb +133 -0
- data/lib/mongoid/identity_map.rb +163 -0
- data/lib/mongoid/indexable.rb +147 -0
- data/lib/mongoid/indexable/specification.rb +115 -0
- data/lib/mongoid/indexable/validators/options.rb +103 -0
- data/lib/mongoid/inspectable.rb +59 -0
- data/lib/mongoid/interceptable.rb +265 -0
- data/lib/mongoid/loggable.rb +69 -0
- data/lib/mongoid/matchable.rb +152 -0
- data/lib/mongoid/matchable/all.rb +27 -0
- data/lib/mongoid/matchable/and.rb +30 -0
- data/lib/mongoid/matchable/default.rb +72 -0
- data/lib/mongoid/matchable/exists.rb +23 -0
- data/lib/mongoid/matchable/gt.rb +21 -0
- data/lib/mongoid/matchable/gte.rb +21 -0
- data/lib/mongoid/matchable/in.rb +24 -0
- data/lib/mongoid/matchable/lt.rb +21 -0
- data/lib/mongoid/matchable/lte.rb +21 -0
- data/lib/mongoid/matchable/ne.rb +21 -0
- data/lib/mongoid/matchable/nin.rb +21 -0
- data/lib/mongoid/matchable/or.rb +33 -0
- data/lib/mongoid/matchable/size.rb +21 -0
- data/lib/mongoid/persistable.rb +207 -0
- data/lib/mongoid/persistable/creatable.rb +189 -0
- data/lib/mongoid/persistable/deletable.rb +149 -0
- data/lib/mongoid/persistable/destroyable.rb +55 -0
- data/lib/mongoid/persistable/incrementable.rb +36 -0
- data/lib/mongoid/persistable/logical.rb +38 -0
- data/lib/mongoid/persistable/poppable.rb +39 -0
- data/lib/mongoid/persistable/pullable.rb +55 -0
- data/lib/mongoid/persistable/pushable.rb +62 -0
- data/lib/mongoid/persistable/renamable.rb +35 -0
- data/lib/mongoid/persistable/savable.rb +52 -0
- data/lib/mongoid/persistable/settable.rb +33 -0
- data/lib/mongoid/persistable/unsettable.rb +36 -0
- data/lib/mongoid/persistable/updatable.rb +151 -0
- data/lib/mongoid/persistable/upsertable.rb +55 -0
- data/lib/mongoid/positional.rb +71 -0
- data/lib/mongoid/railtie.rb +156 -0
- data/lib/mongoid/railties/database.rake +97 -0
- data/lib/mongoid/railties/document.rb +12 -0
- data/lib/mongoid/relations.rb +162 -0
- data/lib/mongoid/relations/accessors.rb +299 -0
- data/lib/mongoid/relations/auto_save.rb +106 -0
- data/lib/mongoid/relations/binding.rb +218 -0
- data/lib/mongoid/relations/bindings.rb +9 -0
- data/lib/mongoid/relations/bindings/embedded/in.rb +63 -0
- data/lib/mongoid/relations/bindings/embedded/many.rb +50 -0
- data/lib/mongoid/relations/bindings/embedded/one.rb +55 -0
- data/lib/mongoid/relations/bindings/referenced/in.rb +65 -0
- data/lib/mongoid/relations/bindings/referenced/many.rb +42 -0
- data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +67 -0
- data/lib/mongoid/relations/bindings/referenced/one.rb +44 -0
- data/lib/mongoid/relations/builder.rb +57 -0
- data/lib/mongoid/relations/builders.rb +104 -0
- data/lib/mongoid/relations/builders/embedded/in.rb +29 -0
- data/lib/mongoid/relations/builders/embedded/many.rb +36 -0
- data/lib/mongoid/relations/builders/embedded/one.rb +30 -0
- data/lib/mongoid/relations/builders/nested_attributes/many.rb +174 -0
- data/lib/mongoid/relations/builders/nested_attributes/one.rb +126 -0
- data/lib/mongoid/relations/builders/referenced/in.rb +26 -0
- data/lib/mongoid/relations/builders/referenced/many.rb +27 -0
- data/lib/mongoid/relations/builders/referenced/many_to_many.rb +40 -0
- data/lib/mongoid/relations/builders/referenced/one.rb +26 -0
- data/lib/mongoid/relations/cascading.rb +56 -0
- data/lib/mongoid/relations/cascading/delete.rb +44 -0
- data/lib/mongoid/relations/cascading/destroy.rb +43 -0
- data/lib/mongoid/relations/cascading/nullify.rb +35 -0
- data/lib/mongoid/relations/cascading/restrict.rb +39 -0
- data/lib/mongoid/relations/constraint.rb +49 -0
- data/lib/mongoid/relations/conversions.rb +34 -0
- data/lib/mongoid/relations/counter_cache.rb +105 -0
- data/lib/mongoid/relations/cyclic.rb +107 -0
- data/lib/mongoid/relations/embedded/batchable.rb +355 -0
- data/lib/mongoid/relations/embedded/in.rb +231 -0
- data/lib/mongoid/relations/embedded/many.rb +639 -0
- data/lib/mongoid/relations/embedded/one.rb +223 -0
- data/lib/mongoid/relations/macros.rb +356 -0
- data/lib/mongoid/relations/many.rb +208 -0
- data/lib/mongoid/relations/marshalable.rb +32 -0
- data/lib/mongoid/relations/metadata.rb +1172 -0
- data/lib/mongoid/relations/nested_builder.rb +74 -0
- data/lib/mongoid/relations/one.rb +60 -0
- data/lib/mongoid/relations/options.rb +48 -0
- data/lib/mongoid/relations/polymorphic.rb +39 -0
- data/lib/mongoid/relations/proxy.rb +270 -0
- data/lib/mongoid/relations/referenced/in.rb +297 -0
- data/lib/mongoid/relations/referenced/many.rb +787 -0
- data/lib/mongoid/relations/referenced/many_to_many.rb +486 -0
- data/lib/mongoid/relations/referenced/one.rb +290 -0
- data/lib/mongoid/relations/reflections.rb +62 -0
- data/lib/mongoid/relations/synchronization.rb +169 -0
- data/lib/mongoid/relations/targets.rb +2 -0
- data/lib/mongoid/relations/targets/enumerable.rb +473 -0
- data/lib/mongoid/relations/touchable.rb +94 -0
- data/lib/mongoid/reloadable.rb +95 -0
- data/lib/mongoid/scopable.rb +379 -0
- data/lib/mongoid/selectable.rb +59 -0
- data/lib/mongoid/serializable.rb +170 -0
- data/lib/mongoid/sessions.rb +330 -0
- data/lib/mongoid/sessions/factory.rb +129 -0
- data/lib/mongoid/sessions/mongo_uri.rb +93 -0
- data/lib/mongoid/sessions/options.rb +141 -0
- data/lib/mongoid/sessions/validators.rb +2 -0
- data/lib/mongoid/sessions/validators/storage.rb +49 -0
- data/lib/mongoid/shardable.rb +65 -0
- data/lib/mongoid/state.rb +97 -0
- data/lib/mongoid/threaded.rb +383 -0
- data/lib/mongoid/threaded/lifecycle.rb +164 -0
- data/lib/mongoid/timestamps.rb +15 -0
- data/lib/mongoid/timestamps/created.rb +30 -0
- data/lib/mongoid/timestamps/created/short.rb +19 -0
- data/lib/mongoid/timestamps/short.rb +10 -0
- data/lib/mongoid/timestamps/updated.rb +39 -0
- data/lib/mongoid/timestamps/updated/short.rb +19 -0
- data/lib/mongoid/traversable.rb +192 -0
- data/lib/mongoid/unit_of_work.rb +61 -0
- data/lib/mongoid/validatable.rb +180 -0
- data/lib/mongoid/validatable/associated.rb +48 -0
- data/lib/mongoid/validatable/format.rb +20 -0
- data/lib/mongoid/validatable/length.rb +20 -0
- data/lib/mongoid/validatable/localizable.rb +30 -0
- data/lib/mongoid/validatable/macros.rb +94 -0
- data/lib/mongoid/validatable/presence.rb +86 -0
- data/lib/mongoid/validatable/queryable.rb +30 -0
- data/lib/mongoid/validatable/uniqueness.rb +330 -0
- data/lib/mongoid/version.rb +4 -0
- data/lib/rack/mongoid.rb +2 -0
- data/lib/rack/mongoid/middleware/identity_map.rb +39 -0
- data/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +76 -0
- data/lib/rails/generators/mongoid/model/model_generator.rb +25 -0
- data/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
- data/lib/rails/generators/mongoid/observer/observer_generator.rb +17 -0
- data/lib/rails/generators/mongoid/observer/templates/observer.rb.tt +4 -0
- data/lib/rails/generators/mongoid_generator.rb +65 -0
- data/lib/rails/mongoid.rb +180 -0
- data/lib/support/ruby_version.rb +26 -0
- data/spec/app/models/account.rb +28 -0
- data/spec/app/models/acolyte.rb +17 -0
- data/spec/app/models/actor.rb +18 -0
- data/spec/app/models/actress.rb +2 -0
- data/spec/app/models/address.rb +77 -0
- data/spec/app/models/address_component.rb +5 -0
- data/spec/app/models/address_number.rb +6 -0
- data/spec/app/models/agency.rb +5 -0
- data/spec/app/models/agent.rb +12 -0
- data/spec/app/models/album.rb +14 -0
- data/spec/app/models/alert.rb +5 -0
- data/spec/app/models/animal.rb +25 -0
- data/spec/app/models/answer.rb +4 -0
- data/spec/app/models/appointment.rb +7 -0
- data/spec/app/models/article.rb +10 -0
- data/spec/app/models/artist.rb +66 -0
- data/spec/app/models/artwork.rb +4 -0
- data/spec/app/models/audio.rb +5 -0
- data/spec/app/models/augmentation.rb +11 -0
- data/spec/app/models/author.rb +4 -0
- data/spec/app/models/band.rb +26 -0
- data/spec/app/models/bar.rb +10 -0
- data/spec/app/models/basic.rb +6 -0
- data/spec/app/models/bed.rb +1 -0
- data/spec/app/models/big_palette.rb +2 -0
- data/spec/app/models/birthday.rb +13 -0
- data/spec/app/models/book.rb +13 -0
- data/spec/app/models/breed.rb +4 -0
- data/spec/app/models/browser.rb +6 -0
- data/spec/app/models/building.rb +5 -0
- data/spec/app/models/building_address.rb +5 -0
- data/spec/app/models/bus.rb +7 -0
- data/spec/app/models/business.rb +5 -0
- data/spec/app/models/callback_recorder.rb +25 -0
- data/spec/app/models/callback_test.rb +9 -0
- data/spec/app/models/canvas.rb +25 -0
- data/spec/app/models/car.rb +1 -0
- data/spec/app/models/cat.rb +8 -0
- data/spec/app/models/category.rb +8 -0
- data/spec/app/models/child.rb +4 -0
- data/spec/app/models/child_doc.rb +22 -0
- data/spec/app/models/church.rb +4 -0
- data/spec/app/models/circle.rb +3 -0
- data/spec/app/models/circuit.rb +4 -0
- data/spec/app/models/circus.rb +7 -0
- data/spec/app/models/code.rb +5 -0
- data/spec/app/models/comment.rb +16 -0
- data/spec/app/models/contractor.rb +5 -0
- data/spec/app/models/cookie.rb +6 -0
- data/spec/app/models/country_code.rb +8 -0
- data/spec/app/models/definition.rb +7 -0
- data/spec/app/models/description.rb +11 -0
- data/spec/app/models/dictionary.rb +10 -0
- data/spec/app/models/division.rb +10 -0
- data/spec/app/models/doctor.rb +12 -0
- data/spec/app/models/dog.rb +7 -0
- data/spec/app/models/dokument.rb +5 -0
- data/spec/app/models/dragon.rb +4 -0
- data/spec/app/models/driver.rb +7 -0
- data/spec/app/models/drug.rb +6 -0
- data/spec/app/models/dungeon.rb +4 -0
- data/spec/app/models/email.rb +6 -0
- data/spec/app/models/employer.rb +5 -0
- data/spec/app/models/entry.rb +6 -0
- data/spec/app/models/eraser.rb +1 -0
- data/spec/app/models/event.rb +22 -0
- data/spec/app/models/exhibition.rb +4 -0
- data/spec/app/models/exhibitor.rb +5 -0
- data/spec/app/models/eye.rb +9 -0
- data/spec/app/models/eye_bowl.rb +9 -0
- data/spec/app/models/face.rb +8 -0
- data/spec/app/models/favorite.rb +6 -0
- data/spec/app/models/filesystem.rb +5 -0
- data/spec/app/models/fire_hydrant.rb +6 -0
- data/spec/app/models/firefox.rb +4 -0
- data/spec/app/models/fish.rb +7 -0
- data/spec/app/models/folder.rb +7 -0
- data/spec/app/models/folder_item.rb +9 -0
- data/spec/app/models/fruits.rb +34 -0
- data/spec/app/models/game.rb +19 -0
- data/spec/app/models/ghost.rb +7 -0
- data/spec/app/models/home.rb +4 -0
- data/spec/app/models/house.rb +6 -0
- data/spec/app/models/html_writer.rb +3 -0
- data/spec/app/models/image.rb +22 -0
- data/spec/app/models/implant.rb +16 -0
- data/spec/app/models/item.rb +8 -0
- data/spec/app/models/jar.rb +7 -0
- data/spec/app/models/label.rb +40 -0
- data/spec/app/models/language.rb +5 -0
- data/spec/app/models/lat_lng.rb +15 -0
- data/spec/app/models/league.rb +11 -0
- data/spec/app/models/learner.rb +2 -0
- data/spec/app/models/line_item.rb +6 -0
- data/spec/app/models/location.rb +8 -0
- data/spec/app/models/login.rb +8 -0
- data/spec/app/models/manufacturer.rb +7 -0
- data/spec/app/models/meat.rb +4 -0
- data/spec/app/models/membership.rb +4 -0
- data/spec/app/models/mixed_drink.rb +4 -0
- data/spec/app/models/movie.rb +13 -0
- data/spec/app/models/my_hash.rb +2 -0
- data/spec/app/models/name.rb +23 -0
- data/spec/app/models/node.rb +5 -0
- data/spec/app/models/note.rb +12 -0
- data/spec/app/models/ordered_post.rb +6 -0
- data/spec/app/models/ordered_preference.rb +6 -0
- data/spec/app/models/oscar.rb +15 -0
- data/spec/app/models/override.rb +16 -0
- data/spec/app/models/ownable.rb +6 -0
- data/spec/app/models/owner.rb +6 -0
- data/spec/app/models/pack.rb +3 -0
- data/spec/app/models/page.rb +5 -0
- data/spec/app/models/page_question.rb +4 -0
- data/spec/app/models/palette.rb +7 -0
- data/spec/app/models/parent.rb +5 -0
- data/spec/app/models/parent_doc.rb +6 -0
- data/spec/app/models/passport.rb +5 -0
- data/spec/app/models/patient.rb +9 -0
- data/spec/app/models/pdf_writer.rb +3 -0
- data/spec/app/models/pencil.rb +1 -0
- data/spec/app/models/person.rb +206 -0
- data/spec/app/models/pet.rb +23 -0
- data/spec/app/models/pet_owner.rb +6 -0
- data/spec/app/models/phone.rb +11 -0
- data/spec/app/models/pizza.rb +7 -0
- data/spec/app/models/player.rb +35 -0
- data/spec/app/models/post.rb +44 -0
- data/spec/app/models/powerup.rb +11 -0
- data/spec/app/models/preference.rb +9 -0
- data/spec/app/models/princess.rb +8 -0
- data/spec/app/models/product.rb +15 -0
- data/spec/app/models/profile.rb +5 -0
- data/spec/app/models/pronunciation.rb +5 -0
- data/spec/app/models/purchase.rb +4 -0
- data/spec/app/models/question.rb +8 -0
- data/spec/app/models/quiz.rb +7 -0
- data/spec/app/models/rating.rb +8 -0
- data/spec/app/models/record.rb +46 -0
- data/spec/app/models/registry.rb +4 -0
- data/spec/app/models/role.rb +7 -0
- data/spec/app/models/root_category.rb +4 -0
- data/spec/app/models/sandwich.rb +4 -0
- data/spec/app/models/scheduler.rb +7 -0
- data/spec/app/models/seo.rb +7 -0
- data/spec/app/models/series.rb +4 -0
- data/spec/app/models/server.rb +13 -0
- data/spec/app/models/service.rb +22 -0
- data/spec/app/models/shape.rb +12 -0
- data/spec/app/models/shelf.rb +5 -0
- data/spec/app/models/shipping_container.rb +5 -0
- data/spec/app/models/shipping_pack.rb +3 -0
- data/spec/app/models/shop.rb +6 -0
- data/spec/app/models/short_agent.rb +4 -0
- data/spec/app/models/short_quiz.rb +5 -0
- data/spec/app/models/slave.rb +6 -0
- data/spec/app/models/song.rb +8 -0
- data/spec/app/models/sound.rb +5 -0
- data/spec/app/models/square.rb +4 -0
- data/spec/app/models/strategy.rb +3 -0
- data/spec/app/models/sub_item.rb +3 -0
- data/spec/app/models/subscription.rb +4 -0
- data/spec/app/models/survey.rb +5 -0
- data/spec/app/models/symptom.rb +6 -0
- data/spec/app/models/tag.rb +8 -0
- data/spec/app/models/target.rb +5 -0
- data/spec/app/models/template.rb +5 -0
- data/spec/app/models/thing.rb +9 -0
- data/spec/app/models/title.rb +3 -0
- data/spec/app/models/tool.rb +8 -0
- data/spec/app/models/topping.rb +5 -0
- data/spec/app/models/track.rb +38 -0
- data/spec/app/models/translation.rb +5 -0
- data/spec/app/models/tree.rb +9 -0
- data/spec/app/models/truck.rb +3 -0
- data/spec/app/models/user.rb +21 -0
- data/spec/app/models/user_account.rb +10 -0
- data/spec/app/models/validation_callback.rb +10 -0
- data/spec/app/models/vehicle.rb +11 -0
- data/spec/app/models/version.rb +5 -0
- data/spec/app/models/vet_visit.rb +5 -0
- data/spec/app/models/video.rb +13 -0
- data/spec/app/models/weapon.rb +11 -0
- data/spec/app/models/wiki_page.rb +14 -0
- data/spec/app/models/word.rb +15 -0
- data/spec/app/models/word_origin.rb +11 -0
- data/spec/app/models/writer.rb +11 -0
- data/spec/config/mongoid.yml +38 -0
- data/spec/mongoid/atomic/modifiers_spec.rb +456 -0
- data/spec/mongoid/atomic/paths/embedded/many_spec.rb +118 -0
- data/spec/mongoid/atomic/paths/embedded/one_spec.rb +110 -0
- data/spec/mongoid/atomic/paths/root_spec.rb +48 -0
- data/spec/mongoid/atomic/paths_spec.rb +270 -0
- data/spec/mongoid/atomic_spec.rb +365 -0
- data/spec/mongoid/attributes/nested_spec.rb +4832 -0
- data/spec/mongoid/attributes/readonly_spec.rb +169 -0
- data/spec/mongoid/attributes_spec.rb +1467 -0
- data/spec/mongoid/changeable_spec.rb +1507 -0
- data/spec/mongoid/composable_spec.rb +24 -0
- data/spec/mongoid/config/environment_spec.rb +83 -0
- data/spec/mongoid/config/options_spec.rb +56 -0
- data/spec/mongoid/config_spec.rb +318 -0
- data/spec/mongoid/contextual/aggregable/memory_spec.rb +293 -0
- data/spec/mongoid/contextual/aggregable/mongo_spec.rb +495 -0
- data/spec/mongoid/contextual/atomic_spec.rb +529 -0
- data/spec/mongoid/contextual/find_and_modify_spec.rb +220 -0
- data/spec/mongoid/contextual/geo_near_spec.rb +405 -0
- data/spec/mongoid/contextual/map_reduce_spec.rb +464 -0
- data/spec/mongoid/contextual/memory_spec.rb +1236 -0
- data/spec/mongoid/contextual/mongo_spec.rb +1843 -0
- data/spec/mongoid/contextual/text_search_spec.rb +207 -0
- data/spec/mongoid/copyable_spec.rb +393 -0
- data/spec/mongoid/criteria/findable_spec.rb +1222 -0
- data/spec/mongoid/criteria/inspectable_spec.rb +27 -0
- data/spec/mongoid/criteria/marshalable_spec.rb +28 -0
- data/spec/mongoid/criteria/modifiable_spec.rb +1063 -0
- data/spec/mongoid/criteria/scopable_spec.rb +391 -0
- data/spec/mongoid/criteria_spec.rb +3821 -0
- data/spec/mongoid/document_spec.rb +1205 -0
- data/spec/mongoid/equality_spec.rb +241 -0
- data/spec/mongoid/errors/ambiguous_relationship_spec.rb +29 -0
- data/spec/mongoid/errors/callback_spec.rb +29 -0
- data/spec/mongoid/errors/delete_restriction_spec.rb +29 -0
- data/spec/mongoid/errors/document_not_found_spec.rb +104 -0
- data/spec/mongoid/errors/eager_load_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_collection_spec.rb +36 -0
- data/spec/mongoid/errors/invalid_config_option_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_field_option_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_field_spec.rb +37 -0
- data/spec/mongoid/errors/invalid_find_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_includes_spec.rb +40 -0
- data/spec/mongoid/errors/invalid_index_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_options_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_path_spec.rb +23 -0
- data/spec/mongoid/errors/invalid_scope_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_set_polymorphic_relation_spec.rb +17 -0
- data/spec/mongoid/errors/invalid_storage_options_spec.rb +29 -0
- data/spec/mongoid/errors/invalid_time_spec.rb +29 -0
- data/spec/mongoid/errors/inverse_not_found_spec.rb +29 -0
- data/spec/mongoid/errors/mixed_relations_spec.rb +29 -0
- data/spec/mongoid/errors/mixed_session_configuration_spec.rb +29 -0
- data/spec/mongoid/errors/mongoid_error_spec.rb +48 -0
- data/spec/mongoid/errors/nested_attributes_metadata_not_found_spec.rb +29 -0
- data/spec/mongoid/errors/no_environment_spec.rb +29 -0
- data/spec/mongoid/errors/no_map_reduce_output_spec.rb +29 -0
- data/spec/mongoid/errors/no_metadata_spec.rb +23 -0
- data/spec/mongoid/errors/no_parent_spec.rb +29 -0
- data/spec/mongoid/errors/no_session_config_spec.rb +29 -0
- data/spec/mongoid/errors/no_session_database_spec.rb +29 -0
- data/spec/mongoid/errors/no_session_hosts_spec.rb +29 -0
- data/spec/mongoid/errors/no_sessions_config_spec.rb +29 -0
- data/spec/mongoid/errors/readonly_attribute_spec.rb +29 -0
- data/spec/mongoid/errors/scope_overwrite_spec.rb +29 -0
- data/spec/mongoid/errors/too_many_nested_attribute_records_spec.rb +29 -0
- data/spec/mongoid/errors/unknown_attribute_spec.rb +29 -0
- data/spec/mongoid/errors/unsaved_document_spec.rb +37 -0
- data/spec/mongoid/errors/unsupported_javascript_spec.rb +29 -0
- data/spec/mongoid/errors/validations_spec.rb +45 -0
- data/spec/mongoid/extensions/array_spec.rb +638 -0
- data/spec/mongoid/extensions/big_decimal_spec.rb +104 -0
- data/spec/mongoid/extensions/binary_spec.rb +60 -0
- data/spec/mongoid/extensions/boolean_spec.rb +135 -0
- data/spec/mongoid/extensions/date_spec.rb +235 -0
- data/spec/mongoid/extensions/date_time_spec.rb +155 -0
- data/spec/mongoid/extensions/false_class_spec.rb +42 -0
- data/spec/mongoid/extensions/float_spec.rb +133 -0
- data/spec/mongoid/extensions/hash_spec.rb +333 -0
- data/spec/mongoid/extensions/integer_spec.rb +136 -0
- data/spec/mongoid/extensions/module_spec.rb +42 -0
- data/spec/mongoid/extensions/nil_class_spec.rb +11 -0
- data/spec/mongoid/extensions/object_id_spec.rb +946 -0
- data/spec/mongoid/extensions/object_spec.rb +292 -0
- data/spec/mongoid/extensions/range_spec.rb +154 -0
- data/spec/mongoid/extensions/regexp_spec.rb +47 -0
- data/spec/mongoid/extensions/set_spec.rb +33 -0
- data/spec/mongoid/extensions/string_spec.rb +357 -0
- data/spec/mongoid/extensions/symbol_spec.rb +76 -0
- data/spec/mongoid/extensions/time_spec.rb +467 -0
- data/spec/mongoid/extensions/time_with_zone_spec.rb +405 -0
- data/spec/mongoid/extensions/true_class_spec.rb +42 -0
- data/spec/mongoid/extensions_spec.rb +15 -0
- data/spec/mongoid/factory_spec.rb +185 -0
- data/spec/mongoid/fields/foreign_key_spec.rb +694 -0
- data/spec/mongoid/fields/internal/foreign_keys/array_spec.rb +184 -0
- data/spec/mongoid/fields/internal/foreign_keys/object_spec.rb +201 -0
- data/spec/mongoid/fields/localized_spec.rb +386 -0
- data/spec/mongoid/fields/standard_spec.rb +166 -0
- data/spec/mongoid/fields_spec.rb +1229 -0
- data/spec/mongoid/findable_spec.rb +342 -0
- data/spec/mongoid/identity_map_spec.rb +564 -0
- data/spec/mongoid/indexable/specification_spec.rb +87 -0
- data/spec/mongoid/indexable_spec.rb +504 -0
- data/spec/mongoid/inspectable_spec.rb +49 -0
- data/spec/mongoid/interceptable_spec.rb +1564 -0
- data/spec/mongoid/loggable_spec.rb +21 -0
- data/spec/mongoid/matchable/all_spec.rb +31 -0
- data/spec/mongoid/matchable/and_spec.rb +162 -0
- data/spec/mongoid/matchable/default_spec.rb +130 -0
- data/spec/mongoid/matchable/exists_spec.rb +57 -0
- data/spec/mongoid/matchable/gt_spec.rb +75 -0
- data/spec/mongoid/matchable/gte_spec.rb +74 -0
- data/spec/mongoid/matchable/in_spec.rb +25 -0
- data/spec/mongoid/matchable/lt_spec.rb +74 -0
- data/spec/mongoid/matchable/lte_spec.rb +74 -0
- data/spec/mongoid/matchable/ne_spec.rb +25 -0
- data/spec/mongoid/matchable/nin_spec.rb +25 -0
- data/spec/mongoid/matchable/or_spec.rb +106 -0
- data/spec/mongoid/matchable/size_spec.rb +25 -0
- data/spec/mongoid/matchable_spec.rb +532 -0
- data/spec/mongoid/persistable/creatable_spec.rb +512 -0
- data/spec/mongoid/persistable/deletable_spec.rb +205 -0
- data/spec/mongoid/persistable/destroyable_spec.rb +148 -0
- data/spec/mongoid/persistable/incrementable_spec.rb +173 -0
- data/spec/mongoid/persistable/logical_spec.rb +143 -0
- data/spec/mongoid/persistable/poppable_spec.rb +115 -0
- data/spec/mongoid/persistable/pullable_spec.rb +228 -0
- data/spec/mongoid/persistable/pushable_spec.rb +258 -0
- data/spec/mongoid/persistable/renamable_spec.rb +135 -0
- data/spec/mongoid/persistable/savable_spec.rb +432 -0
- data/spec/mongoid/persistable/settable_spec.rb +139 -0
- data/spec/mongoid/persistable/unsettable_spec.rb +155 -0
- data/spec/mongoid/persistable/updatable_spec.rb +522 -0
- data/spec/mongoid/persistable/upsertable_spec.rb +106 -0
- data/spec/mongoid/persistable_spec.rb +206 -0
- data/spec/mongoid/positional_spec.rb +227 -0
- data/spec/mongoid/railties/document_spec.rb +24 -0
- data/spec/mongoid/relations/accessors_spec.rb +736 -0
- data/spec/mongoid/relations/auto_save_spec.rb +261 -0
- data/spec/mongoid/relations/bindings/embedded/in_spec.rb +171 -0
- data/spec/mongoid/relations/bindings/embedded/many_spec.rb +54 -0
- data/spec/mongoid/relations/bindings/embedded/one_spec.rb +77 -0
- data/spec/mongoid/relations/bindings/referenced/in_spec.rb +241 -0
- data/spec/mongoid/relations/bindings/referenced/many_spec.rb +153 -0
- data/spec/mongoid/relations/bindings/referenced/many_to_many_spec.rb +178 -0
- data/spec/mongoid/relations/bindings/referenced/one_spec.rb +131 -0
- data/spec/mongoid/relations/builders/embedded/in_spec.rb +34 -0
- data/spec/mongoid/relations/builders/embedded/many_spec.rb +132 -0
- data/spec/mongoid/relations/builders/embedded/one_spec.rb +99 -0
- data/spec/mongoid/relations/builders/nested_attributes/many_spec.rb +234 -0
- data/spec/mongoid/relations/builders/nested_attributes/one_spec.rb +250 -0
- data/spec/mongoid/relations/builders/referenced/in_spec.rb +241 -0
- data/spec/mongoid/relations/builders/referenced/many_spec.rb +137 -0
- data/spec/mongoid/relations/builders/referenced/many_to_many_spec.rb +178 -0
- data/spec/mongoid/relations/builders/referenced/one_spec.rb +124 -0
- data/spec/mongoid/relations/builders_spec.rb +226 -0
- data/spec/mongoid/relations/cascading/delete_spec.rb +101 -0
- data/spec/mongoid/relations/cascading/destroy_spec.rb +47 -0
- data/spec/mongoid/relations/cascading/nullify_spec.rb +32 -0
- data/spec/mongoid/relations/cascading/restrict_spec.rb +68 -0
- data/spec/mongoid/relations/cascading_spec.rb +355 -0
- data/spec/mongoid/relations/constraint_spec.rb +74 -0
- data/spec/mongoid/relations/conversions_spec.rb +126 -0
- data/spec/mongoid/relations/counter_cache_spec.rb +205 -0
- data/spec/mongoid/relations/cyclic_spec.rb +156 -0
- data/spec/mongoid/relations/embedded/dirty_spec.rb +65 -0
- data/spec/mongoid/relations/embedded/in_spec.rb +579 -0
- data/spec/mongoid/relations/embedded/many_spec.rb +3781 -0
- data/spec/mongoid/relations/embedded/one_spec.rb +1014 -0
- data/spec/mongoid/relations/macros_spec.rb +631 -0
- data/spec/mongoid/relations/metadata_spec.rb +1936 -0
- data/spec/mongoid/relations/options_spec.rb +35 -0
- data/spec/mongoid/relations/polymorphic_spec.rb +128 -0
- data/spec/mongoid/relations/proxy_spec.rb +48 -0
- data/spec/mongoid/relations/referenced/in_spec.rb +1435 -0
- data/spec/mongoid/relations/referenced/many_spec.rb +3546 -0
- data/spec/mongoid/relations/referenced/many_to_many_spec.rb +3556 -0
- data/spec/mongoid/relations/referenced/one_spec.rb +1289 -0
- data/spec/mongoid/relations/reflections_spec.rb +101 -0
- data/spec/mongoid/relations/synchronization_spec.rb +449 -0
- data/spec/mongoid/relations/targets/enumerable_spec.rb +1710 -0
- data/spec/mongoid/relations/touchable_spec.rb +296 -0
- data/spec/mongoid/relations_spec.rb +188 -0
- data/spec/mongoid/reloadable_spec.rb +305 -0
- data/spec/mongoid/scopable_spec.rb +926 -0
- data/spec/mongoid/selectable_spec.rb +134 -0
- data/spec/mongoid/serializable_spec.rb +862 -0
- data/spec/mongoid/sessions/factory_spec.rb +312 -0
- data/spec/mongoid/sessions/mongo_uri_spec.rb +103 -0
- data/spec/mongoid/sessions/options_spec.rb +71 -0
- data/spec/mongoid/sessions_spec.rb +1078 -0
- data/spec/mongoid/shardable_spec.rb +61 -0
- data/spec/mongoid/state_spec.rb +102 -0
- data/spec/mongoid/threaded_spec.rb +258 -0
- data/spec/mongoid/timestamps/created/short_spec.rb +51 -0
- data/spec/mongoid/timestamps/created_spec.rb +44 -0
- data/spec/mongoid/timestamps/updated/short_spec.rb +90 -0
- data/spec/mongoid/timestamps/updated_spec.rb +86 -0
- data/spec/mongoid/timestamps_spec.rb +112 -0
- data/spec/mongoid/traversable_spec.rb +244 -0
- data/spec/mongoid/unit_of_work_spec.rb +196 -0
- data/spec/mongoid/validatable/associated_spec.rb +183 -0
- data/spec/mongoid/validatable/format_spec.rb +83 -0
- data/spec/mongoid/validatable/length_spec.rb +119 -0
- data/spec/mongoid/validatable/numericality_spec.rb +30 -0
- data/spec/mongoid/validatable/presence_spec.rb +511 -0
- data/spec/mongoid/validatable/uniqueness_spec.rb +2305 -0
- data/spec/mongoid/validatable_spec.rb +309 -0
- data/spec/mongoid_spec.rb +74 -0
- data/spec/rack/mongoid/middleware/identity_map_spec.rb +72 -0
- data/spec/rails/mongoid_spec.rb +462 -0
- data/spec/spec_helper.rb +103 -0
- metadata +1160 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009-2013 Durran Jordan
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
Mongoid [![Build Status](https://secure.travis-ci.org/mongoid/mongoid.png?branch=master)](http://travis-ci.org/mongoid/mongoid) [![Code Climate](https://codeclimate.com/github/mongoid/mongoid.png)](https://codeclimate.com/github/mongoid/mongoid) [![Coverage Status](https://coveralls.io/repos/mongoid/mongoid/badge.png?branch=master)](https://coveralls.io/r/mongoid/mongoid?branch=master)
|
2
|
+
========
|
3
|
+
|
4
|
+
Mongoid is an ODM (Object-Document-Mapper) framework for MongoDB in Ruby.
|
5
|
+
|
6
|
+
Project Tracking
|
7
|
+
----------------
|
8
|
+
|
9
|
+
* [Mongoid Google Group](http://groups.google.com/group/mongoid)
|
10
|
+
* [Mongoid Website and Documentation](http://mongoid.org)
|
11
|
+
* [Mongoid Code Climate](https://codeclimate.com/github/mongoid/mongoid)
|
12
|
+
|
13
|
+
Compatibility
|
14
|
+
-------------
|
15
|
+
|
16
|
+
Mongoid is tested against MRI 1.9.3, 2.0.0, and JRuby (1.9).
|
17
|
+
|
18
|
+
Documentation
|
19
|
+
-------------
|
20
|
+
|
21
|
+
Please see the new Mongoid website for up-to-date documentation:
|
22
|
+
[mongoid.org](http://mongoid.org)
|
23
|
+
|
24
|
+
Donating
|
25
|
+
--------
|
26
|
+
|
27
|
+
[Support Mongoid at Pledgie](http://www.pledgie.com/campaigns/7757)
|
28
|
+
|
29
|
+
<a href='http://www.pledgie.com/campaigns/7757'>
|
30
|
+
<img alt='Click here to lend your support to: Mongoid and make a donation at www.pledgie.com !' src='http://www.pledgie.com/campaigns/7757.png?skin_name=chrome' border='0'/>
|
31
|
+
</a>
|
32
|
+
|
33
|
+
[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=durran&url=http://github.com/mongoid&title=mongoid&language=&tags=github&category=software)
|
34
|
+
|
35
|
+
License
|
36
|
+
-------
|
37
|
+
|
38
|
+
Copyright (c) 2009-2013 Durran Jordan
|
39
|
+
|
40
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
41
|
+
a copy of this software and associated documentation files (the
|
42
|
+
"Software"), to deal in the Software without restriction, including
|
43
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
44
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
45
|
+
permit persons to whom the Software is furnished to do so, subject to
|
46
|
+
the following conditions:
|
47
|
+
|
48
|
+
The above copyright notice and this permission notice shall be
|
49
|
+
included in all copies or substantial portions of the Software.
|
50
|
+
|
51
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
52
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
53
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
54
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
55
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
56
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
57
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
58
|
+
|
59
|
+
Credits
|
60
|
+
-------
|
61
|
+
|
62
|
+
Durran Jordan: durran at gmail dot com
|
data/Rakefile
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require "bundler"
|
2
|
+
Bundler.setup
|
3
|
+
|
4
|
+
require "rake"
|
5
|
+
require "rspec/core/rake_task"
|
6
|
+
|
7
|
+
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
8
|
+
require "mongoid/version"
|
9
|
+
|
10
|
+
task :gem => :build
|
11
|
+
task :build do
|
12
|
+
system "gem build mongoid.gemspec"
|
13
|
+
end
|
14
|
+
|
15
|
+
task :install => :build do
|
16
|
+
system "sudo gem install mongoid-#{Mongoid::VERSION}.gem"
|
17
|
+
end
|
18
|
+
|
19
|
+
task :release => :build do
|
20
|
+
system "git tag -a v#{Mongoid::VERSION} -m 'Tagging #{Mongoid::VERSION}'"
|
21
|
+
system "git push --tags"
|
22
|
+
system "gem push mongoid-#{Mongoid::VERSION}.gem"
|
23
|
+
system "rm mongoid-#{Mongoid::VERSION}.gem"
|
24
|
+
end
|
25
|
+
|
26
|
+
RSpec::Core::RakeTask.new("spec") do |spec|
|
27
|
+
spec.pattern = "spec/**/*_spec.rb"
|
28
|
+
end
|
29
|
+
|
30
|
+
RSpec::Core::RakeTask.new('spec:progress') do |spec|
|
31
|
+
spec.rspec_opts = %w(--format progress)
|
32
|
+
spec.pattern = "spec/**/*_spec.rb"
|
33
|
+
end
|
34
|
+
|
35
|
+
task :default => :spec
|
@@ -0,0 +1,452 @@
|
|
1
|
+
en:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
blank_in_locale:
|
6
|
+
"can't be blank in %{location}"
|
7
|
+
ambiguous_relationship:
|
8
|
+
message: "Ambiguous relations %{candidates} defined on %{klass}."
|
9
|
+
summary:
|
10
|
+
"When Mongoid attempts to set an inverse document of a relation
|
11
|
+
in memory, it needs to know which relation it belongs to. When
|
12
|
+
setting %{name}, Mongoid looked on the class %{inverse}
|
13
|
+
for a matching relation, but multiples were found that could
|
14
|
+
potentially match: %{candidates}."
|
15
|
+
resolution: "On the %{name} relation on %{inverse} you must add an
|
16
|
+
:inverse_of option to specify the exact relationship on %{klass}
|
17
|
+
that is the opposite of %{name}."
|
18
|
+
callbacks:
|
19
|
+
message: "Calling %{method} on %{klass} resulted in a false return
|
20
|
+
from a callback."
|
21
|
+
summary: "If a before callback returns false when using Document.create!,
|
22
|
+
Document#save!, or Documnet#update_attributes! this error will get raised
|
23
|
+
since the document did not actually get saved."
|
24
|
+
resolution: "Double check all before callbacks to make sure they are
|
25
|
+
not unintentionally returning false."
|
26
|
+
calling_document_find_with_nil_is_invalid:
|
27
|
+
message: "Calling Document.find with nil is invalid."
|
28
|
+
summary: "Document.find expects the parameters to be 1 or more ids, and
|
29
|
+
will return a single document if 1 id is provided, otherwise an array
|
30
|
+
of documents if multiple ids are provided."
|
31
|
+
resolution: "Most likely this is caused by passing parameters directly
|
32
|
+
through to the find, and the parameter either is not present or the
|
33
|
+
key from which it is accessed is incorrect."
|
34
|
+
document_not_found:
|
35
|
+
message: "Document(s) not found for class %{klass} with id(s) %{missing}."
|
36
|
+
summary: "When calling %{klass}.find with an id or array of ids, each
|
37
|
+
parameter must match a document in the database or this error will be
|
38
|
+
raised. The search was for the id(s): %{searched} (%{total} total)
|
39
|
+
and the following ids were not found: %{missing}."
|
40
|
+
resolution: "Search for an id that is in the database or set
|
41
|
+
the Mongoid.raise_not_found_error configuration option to false,
|
42
|
+
which will cause a nil to be returned instead of raising this error when
|
43
|
+
searching for a single id, or only the matched documents when searching
|
44
|
+
for multiples."
|
45
|
+
document_with_attributes_not_found:
|
46
|
+
message: "Document not found for class %{klass} with attributes %{attributes}."
|
47
|
+
summary: "When calling %{klass}.find_by with a hash of attributes, all
|
48
|
+
attributes provided must match a document in the database or this error
|
49
|
+
will be raised."
|
50
|
+
resolution: "Search for attributes that are in the database or set
|
51
|
+
the Mongoid.raise_not_found_error configuration option to false,
|
52
|
+
which will cause a nil to be returned instead of raising this error."
|
53
|
+
eager_load:
|
54
|
+
message: "Eager loading :%{name} is not supported since it is a
|
55
|
+
polymorphic belongs_to relation."
|
56
|
+
summary: "Mongoid cannot currently determine the classes it needs to
|
57
|
+
eager load when the relation is polymorphic. The parents reside in
|
58
|
+
different collections so a simple id lookup is not sufficient enough."
|
59
|
+
resolution: "Don't attempt to perform this action and have patience,
|
60
|
+
maybe this will be supported in the future."
|
61
|
+
invalid_collection:
|
62
|
+
message: "Access to the collection for %{klass} is not allowed."
|
63
|
+
summary: "%{klass}.collection was called, and %{klass} is an embedded
|
64
|
+
document - it resides within the collection of the root document of
|
65
|
+
the hierarchy."
|
66
|
+
resolution: "For access to the collection that the embedded document is
|
67
|
+
in, use %{klass}#_root.collection, or do not attempt to persist an
|
68
|
+
embedded document without a parent set."
|
69
|
+
invalid_config_option:
|
70
|
+
message: "Invalid configuration option: %{name}."
|
71
|
+
summary: "A invalid configuration option was provided in your
|
72
|
+
mongoid.yml, or a typo is potentially present. The valid configuration
|
73
|
+
options are: %{options}."
|
74
|
+
resolution: "Remove the invalid option or fix the typo. If you were
|
75
|
+
expecting the option to be there, please consult the following page
|
76
|
+
with repect to Mongoid's configuration:\n\n
|
77
|
+
\_\_http://mongoid.org/en/mongoid/docs/installation.html"
|
78
|
+
invalid_field:
|
79
|
+
message: "Defining a field named '%{name}' is not allowed."
|
80
|
+
summary: "Defining this field would override the method '%{name}',
|
81
|
+
which would cause issues with expectations around the original
|
82
|
+
method and cause extremely hard to debug issues. The original
|
83
|
+
method was defined in:\n
|
84
|
+
\_\_Object: %{origin}\n
|
85
|
+
\_\_File: %{file}\n
|
86
|
+
\_\_Line: %{line}"
|
87
|
+
resolution: "Use Mongoid.destructive_fields to see what names are not
|
88
|
+
allowed, and don't use these names. These include names that also
|
89
|
+
conflict with core Ruby methods on Object, Module, Enumerable, or
|
90
|
+
included gems that inject methods into these or Mongoid internals."
|
91
|
+
invalid_field_option:
|
92
|
+
message: "Invalid option :%{option} provided for field :%{name}."
|
93
|
+
summary: "Mongoid requires that you only provide valid options on each
|
94
|
+
field definition in order to prevent unexpected behaviour later on."
|
95
|
+
resolution: "When defining the field :%{name} on '%{klass}', please provide
|
96
|
+
valid options for the field. These are currently: %{valid}. If you
|
97
|
+
meant to define a custom field option, please do so first like so:\n\n
|
98
|
+
\_\_Mongoid::Fields.option :%{option} do |model, field, value|\n
|
99
|
+
\_\_\_\_# Your logic here...\n
|
100
|
+
\_\_end\n
|
101
|
+
\_\_class %{klass}\n
|
102
|
+
\_\_\_\_include Mongoid::Document\n
|
103
|
+
\_\_\_\_field :%{name}, %{option}: true\n
|
104
|
+
\_\_end\n\n"
|
105
|
+
invalid_includes:
|
106
|
+
message: "Invalid includes directive: %{klass}.includes(%{args})"
|
107
|
+
summary: "Eager loading in Mongoid only supports providing arguments
|
108
|
+
to %{klass}.includes that are the names of relations on the %{klass}
|
109
|
+
model, and only supports one level of eager loading. (ie, eager loading
|
110
|
+
associations not on the %{klass} but one step away via another relation
|
111
|
+
is not allowed."
|
112
|
+
resolution: "Ensure that each parameter passed to %{klass}.includes is
|
113
|
+
a valid name of a relation on the %{klass} model. These are: %{relations}."
|
114
|
+
invalid_index:
|
115
|
+
message: "Invalid index specification on %{klass}: %{spec}, %{options}"
|
116
|
+
summary: "Indexes in Mongoid are defined as a hash of field name and
|
117
|
+
direction/2d pairs, with a hash for any additional options."
|
118
|
+
resolution: "Ensure that the index conforms to the correct syntax and
|
119
|
+
has the correct options.\n\n
|
120
|
+
Valid options are:\n
|
121
|
+
\_\_background: true|false\n
|
122
|
+
\_\_drop_dups: true|false\n
|
123
|
+
\_\_name: 'index_name'\n
|
124
|
+
\_\_sparse: true|false\n
|
125
|
+
\_\_unique: true|false\n
|
126
|
+
\_\_min: 1\n
|
127
|
+
\_\_max: 1\n
|
128
|
+
\_\_bits: 26\n
|
129
|
+
\_\_bucket_size : 1\n
|
130
|
+
\_\_weights: { content: 1, title: 2 }\n
|
131
|
+
Valid types are: 1, -1, '2d', '2dsphere', 'geoHaystack', 'text', 'hashed'\n\n
|
132
|
+
Example:\n
|
133
|
+
\_\_class Band\n
|
134
|
+
\_\_\_\_include Mongoid::Document\n
|
135
|
+
\_\_\_\_index({ name: 1, label: -1 }, { sparse: true })\n
|
136
|
+
\_\_\_\_index({ location: '2d' }, { background: true })\n
|
137
|
+
\_\_end\n\n"
|
138
|
+
invalid_options:
|
139
|
+
message: "Invalid option :%{invalid} provided to relation :%{name}."
|
140
|
+
summary: "Mongoid checks the options that are passed to the relation
|
141
|
+
macros to ensure that no ill side effects occur by letting something
|
142
|
+
slip by."
|
143
|
+
resolution: "Valid options are: %{valid}, make sure these are the ones
|
144
|
+
you are using."
|
145
|
+
invalid_path:
|
146
|
+
message: "Having a root path assigned for %{klass} is invalid."
|
147
|
+
summary: "Mongoid has two different path objects for determining
|
148
|
+
the location of a document in the database, Root and Embedded.
|
149
|
+
This error is raised when an embedded document somehow gets a
|
150
|
+
root path assigned."
|
151
|
+
resolution: "Most likely your embedded model, %{klass} is also
|
152
|
+
referenced via a has_many from a root document in another
|
153
|
+
collection. Double check the relation definitions and fix any
|
154
|
+
instances where embedded documents are improperly referenced
|
155
|
+
from other collections."
|
156
|
+
invalid_scope:
|
157
|
+
message: "Defining a scope of value %{value} on %{klass} is not
|
158
|
+
allowed."
|
159
|
+
summary: "Scopes in Mongoid must be either criteria objects or procs
|
160
|
+
that wrap criteria objects."
|
161
|
+
resolution: "Change the scope to be a criteria or proc wrapped
|
162
|
+
critera.\n\n
|
163
|
+
Example:\n
|
164
|
+
\_\_class Band\n
|
165
|
+
\_\_\_\_include Mongoid::Document\n
|
166
|
+
\_\_\_\_field :active, type: Boolean, default: true\n
|
167
|
+
\_\_\_\_scope :active, where(active: true)\n
|
168
|
+
\_\_\_\_scope :inactive, ->{ where(active: false) }\n
|
169
|
+
\_\_end\n\n"
|
170
|
+
invalid_storage_options:
|
171
|
+
message: "Invalid options passed to %{klass}.store_in: %{options}."
|
172
|
+
summary: "The :store_in macro takes only a hash of parameters with
|
173
|
+
the keys :database, :collection, or :session."
|
174
|
+
resolution: "Change the options passed to store_in to match the
|
175
|
+
documented API, and ensure all keys in the options hash are
|
176
|
+
symbols.\n\n
|
177
|
+
Example:\n
|
178
|
+
\_\_class Band\n
|
179
|
+
\_\_\_\_include Mongoid::Document\n
|
180
|
+
\_\_\_\_store_in collection: 'artists', database: 'secondary'\n
|
181
|
+
\_\_end\n\n"
|
182
|
+
invalid_time:
|
183
|
+
message: "'%{value}' is not a valid Time."
|
184
|
+
summary: "Mongoid tries to serialize the values for Date, DateTime, and
|
185
|
+
Time into proper UTC times to store in the database. The provided
|
186
|
+
value could not be parsed."
|
187
|
+
resolution: "Make sure to pass parsable values to the field setter
|
188
|
+
for Date, DateTime, and Time objects. When this is a String it needs
|
189
|
+
to be valid for Time.parse. Other objects must be valid to pass to
|
190
|
+
Time.local."
|
191
|
+
inverse_not_found:
|
192
|
+
message: "When adding a(n) %{klass} to %{base}#%{name}, Mongoid could
|
193
|
+
not determine the inverse foreign key to set. The attempted key was
|
194
|
+
'%{inverse}'."
|
195
|
+
summary: "When adding a document to a relation, Mongoid attempts
|
196
|
+
to link the newly added document to the base of the relation in
|
197
|
+
memory, as well as set the foreign key to link them on the
|
198
|
+
database side. In this case Mongoid could not determine what the
|
199
|
+
inverse foreign key was."
|
200
|
+
resolution: "If an inverse is not required, like a belongs_to or
|
201
|
+
has_and_belongs_to_many, ensure that :inverse_of => nil is set
|
202
|
+
on the relation. If the inverse is needed, most likely the
|
203
|
+
inverse cannot be figured out from the names of the relations and
|
204
|
+
you will need to explicitly tell Mongoid on the relation what
|
205
|
+
the inverse is.\n\n
|
206
|
+
Example:\n
|
207
|
+
\_\_class Lush\n
|
208
|
+
\_\_\_\_include Mongoid::Document\n
|
209
|
+
\_\_\_\_has_one :whiskey, class_name: \"Drink\", inverse_of: :alcoholic\n
|
210
|
+
\_\_end\n\n
|
211
|
+
\_\_class Drink\n
|
212
|
+
\_\_\_\_include Mongoid::Document\n
|
213
|
+
\_\_\_\_belongs_to :alcoholic, class_name: \"Lush\", inverse_of: :whiskey\n
|
214
|
+
\_\_end"
|
215
|
+
invalid_set_polymorphic_relation:
|
216
|
+
message: "The %{name} attribute can't be set to an instance of
|
217
|
+
%{other_klass} as %{other_klass} has multiple relations referencing
|
218
|
+
%{klass} as %{name}."
|
219
|
+
summary: "If the parent class of a polymorphic relation has multiple
|
220
|
+
definitions for the same relation, the values must be set from the
|
221
|
+
parent side and not the child side since Mongoid cannot determine
|
222
|
+
from the child side which relation to go in."
|
223
|
+
resolution: "Set the values from the parent, or redefine the relation
|
224
|
+
with only a single definition in the parent."
|
225
|
+
invalid_value:
|
226
|
+
message: "Value of type %{value_class} cannot be written to a field of type %{field_class}"
|
227
|
+
summary: "Tried to set a value of type %{value_class} to a field of type %{field_class}"
|
228
|
+
resolution: "Verify if the value to be set correspond to field definition"
|
229
|
+
mixed_relations:
|
230
|
+
message: "Referencing a(n) %{embedded} document from the %{root}
|
231
|
+
document via a relational association is not allowed since the
|
232
|
+
%{embedded} is embedded."
|
233
|
+
summary: "In order to properly access a(n) %{embedded} from %{root}
|
234
|
+
the reference would need to go through the root document of
|
235
|
+
%{embedded}. In a simple case this would require Mongoid to store
|
236
|
+
an extra foreign key for the root, in more complex cases where
|
237
|
+
%{embedded} is multiple levels deep a key would need to be stored
|
238
|
+
for each parent up the hierarchy."
|
239
|
+
resolution: "Consider not embedding %{embedded}, or do the key
|
240
|
+
storage and access in a custom manner in the application code."
|
241
|
+
mixed_session_configuration:
|
242
|
+
message: "Both uri and standard configuration options defined for
|
243
|
+
session: '%{name}'."
|
244
|
+
summary: "Instead of simply giving uri or standard options a
|
245
|
+
preference order, Mongoid assumes that you have made a mistake in
|
246
|
+
your configuration and requires that you provide one or the other,
|
247
|
+
but not both. The options that were provided were: %{config}."
|
248
|
+
resolution: "Provide either only a uri as configuration or only
|
249
|
+
standard options."
|
250
|
+
nested_attributes_metadata_not_found:
|
251
|
+
message: "Could not find metadata for relation '%{name}' on model:
|
252
|
+
%{klass}."
|
253
|
+
summary: "When defining nested attributes for a relation, Mongoid
|
254
|
+
needs to access the metadata for the relation '%{name}' in order
|
255
|
+
if add autosave functionality to it, if applicable. Either no
|
256
|
+
relation named '%{name}' could be found, or the relation had not
|
257
|
+
been defined yet."
|
258
|
+
resolution: "Make sure that there is a relation defined named
|
259
|
+
'%{name}' on %{klass} or that the relation definition comes before
|
260
|
+
the accepts_nested_attributes_for macro in the model - order
|
261
|
+
matters so that Mongoid has access to the metadata.\n\n
|
262
|
+
Example:\n
|
263
|
+
\_\_class Band\n
|
264
|
+
\_\_\_\_include Mongoid::Document\n
|
265
|
+
\_\_\_\_has_many :albums\n
|
266
|
+
\_\_\_\_accepts_nested_attributes_for :albums\n
|
267
|
+
\_\_end\n\n"
|
268
|
+
no_default_session:
|
269
|
+
message: "No default session configuration is defined."
|
270
|
+
summary: "The configuration provided settings for: %{keys}, but
|
271
|
+
Mongoid requires a :default to be defined at minimum."
|
272
|
+
resolution: "If configuring via a mongoid.yml, ensure that within
|
273
|
+
your :sessions section a :default session is defined.\n\n
|
274
|
+
Example:\n
|
275
|
+
\_\_development:\n
|
276
|
+
\_\_\_\_sessions:\n
|
277
|
+
\_\_\_\_\_\_default:\n
|
278
|
+
\_\_\_\_\_\_\_\_hosts:\n
|
279
|
+
\_\_\_\_\_\_\_\_\_\_- localhost:27017\n\n"
|
280
|
+
no_environment:
|
281
|
+
message: "Could not load the configuration since no environment
|
282
|
+
was defined."
|
283
|
+
summary: "Mongoid attempted to find the appropriate environment
|
284
|
+
but no Rails.env, Sinatra::Base.environment, RACK_ENV, or
|
285
|
+
MONGOID_ENV could be found."
|
286
|
+
resolution: "Make sure some environment is set from the mentioned
|
287
|
+
options. Mongoid cannot load configuration from the yaml without
|
288
|
+
knowing which environment it is in, and we have considered
|
289
|
+
defaulting to development an undesireable side effect of this not
|
290
|
+
being defined."
|
291
|
+
no_map_reduce_output:
|
292
|
+
message: "No output location was specified for the map/reduce
|
293
|
+
operation."
|
294
|
+
summary: "When executing a map/reduce, you must provide the output
|
295
|
+
location of the results. The attempted command was: %{command}."
|
296
|
+
resolution: "Provide the location that the output of the operation
|
297
|
+
is to go by chaining an #out call to the map/reduce.\n\n
|
298
|
+
Example:\n
|
299
|
+
\_\_Band.map_reduce(map, reduce).out(inline: 1)\n\n
|
300
|
+
Valid options for the out function are:\n
|
301
|
+
\_\_inline: 1\n
|
302
|
+
\_\_merge: 'collection-name'\n
|
303
|
+
\_\_replace: 'collection-name'\n
|
304
|
+
\_\_reduce: 'collection-name'\n\n"
|
305
|
+
no_metadata:
|
306
|
+
message: "Metadata not found for document of type %{klass}."
|
307
|
+
summary: "Mongoid sets the metadata of a relation on the document
|
308
|
+
when it is either loaded from within the relation, or added to
|
309
|
+
one. The presence of the metadata is required in order to
|
310
|
+
provide various functionality around relations. Most likely you
|
311
|
+
are getting this error because the document is embedded and was
|
312
|
+
attempted to be persisted without being associated with a parent,
|
313
|
+
or the relation was not properly defined."
|
314
|
+
resolution: "Ensure that your relations on the %{klass} model
|
315
|
+
are all properly defined, and that the inverse relations
|
316
|
+
are also properly defined. Embedded relations must have both the
|
317
|
+
parent (embeds_one/embeds_many) and the inverse (embedded_in)
|
318
|
+
present in order to work properly."
|
319
|
+
no_parent:
|
320
|
+
message: "Cannot persist embedded document %{klass} without a
|
321
|
+
parent document."
|
322
|
+
summary: "If the document is embedded, in order to be persisted it
|
323
|
+
must always have a reference to its parent document. This is
|
324
|
+
most likely caused by either calling %{klass}.create or
|
325
|
+
%{klass}.create! without setting the parent document as an
|
326
|
+
attribute."
|
327
|
+
resolution: "Ensure that you've set the parent relation if
|
328
|
+
instantiating the embedded document direcly, or always create new
|
329
|
+
embedded documents via the parent relation."
|
330
|
+
no_session_config:
|
331
|
+
message: "No configuration could be found for a session named
|
332
|
+
'%{name}'."
|
333
|
+
summary: "When attempting to create the new session, Mongoid could
|
334
|
+
not find a session configuration for the name: '%{name}'. This is
|
335
|
+
necessary in order to know the host, port, and options needed
|
336
|
+
to connect."
|
337
|
+
resolution: "Double check your mongoid.yml to make sure under the
|
338
|
+
sessions key that a configuration exists for '%{name}'. If you
|
339
|
+
have set the configuration programatically, ensure that '%{name}'
|
340
|
+
exists in the configuration hash."
|
341
|
+
no_sessions_config:
|
342
|
+
message: "No sessions configuration provided."
|
343
|
+
summary: "Mongoid's configuration requires that you provide details
|
344
|
+
about each session that can be connected to, and requires in
|
345
|
+
the sessions config at least 1 default session to exist."
|
346
|
+
resolution: "Double check your mongoid.yml to make sure that you
|
347
|
+
have a top-level sessions key with at least 1 default session
|
348
|
+
configuration for it. You can regenerate a new mongoid.yml for
|
349
|
+
assistance via `rails g mongoid:config`.\n\n
|
350
|
+
Example:\n
|
351
|
+
\_\_development:\n
|
352
|
+
\_\_\_\_sessions:\n
|
353
|
+
\_\_\_\_\_\_default:\n
|
354
|
+
\_\_\_\_\_\_\_\_database: mongoid_dev\n
|
355
|
+
\_\_\_\_\_\_\_\_hosts:\n
|
356
|
+
\_\_\_\_\_\_\_\_\_\_- localhost:27017\n\n"
|
357
|
+
no_session_database:
|
358
|
+
message: "No database provided for session configuration: :%{name}."
|
359
|
+
summary: "Each session configuration must provide a database so Mongoid
|
360
|
+
knows where the default database to persist to. What was provided
|
361
|
+
was: %{config}."
|
362
|
+
resolution: "If configuring via a mongoid.yml, ensure that within
|
363
|
+
your :%{name} section a :database value for the session's default
|
364
|
+
database is defined.\n\n
|
365
|
+
Example:\n
|
366
|
+
\_\_development:\n
|
367
|
+
\_\_\_\_sessions:\n
|
368
|
+
\_\_\_\_\_\_%{name}:\n
|
369
|
+
\_\_\_\_\_\_\_\_database: my_app_db\n
|
370
|
+
\_\_\_\_\_\_\_\_hosts:\n
|
371
|
+
\_\_\_\_\_\_\_\_\_\_- localhost:27017\n\n"
|
372
|
+
no_session_hosts:
|
373
|
+
message: "No hosts provided for session configuration: :%{name}."
|
374
|
+
summary: "Each session configuration must provide hosts so Mongoid
|
375
|
+
knows where the database server is located. What was provided
|
376
|
+
was: %{config}."
|
377
|
+
resolution: "If configuring via a mongoid.yml, ensure that within
|
378
|
+
your :%{name} section a :hosts value for the session hosts is
|
379
|
+
defined.\n\n
|
380
|
+
Example:\n
|
381
|
+
\_\_development:\n
|
382
|
+
\_\_\_\_sessions:\n
|
383
|
+
\_\_\_\_\_\_%{name}:\n
|
384
|
+
\_\_\_\_\_\_\_\_database: my_app_db\n
|
385
|
+
\_\_\_\_\_\_\_\_hosts:\n
|
386
|
+
\_\_\_\_\_\_\_\_\_\_- localhost:27017\n\n"
|
387
|
+
readonly_attribute:
|
388
|
+
message: "Attempted to set the readonly attribute '%{name}' with
|
389
|
+
the value: %{value}."
|
390
|
+
summary: "Attributes flagged as readonly via Model.attr_readonly
|
391
|
+
can only have values set when the document is a new record."
|
392
|
+
resolution: "Don't define '%{name}' as readonly, or do not attempt
|
393
|
+
to update its value after the document is persisted."
|
394
|
+
scope_overwrite:
|
395
|
+
message: "Cannot create scope :%{scope_name}, because of existing
|
396
|
+
method %{model_name}.%{scope_name}."
|
397
|
+
summary: "When defining a scope that conflicts with a method that
|
398
|
+
already exists on the model, this error will get raised if
|
399
|
+
Mongoid.scope_overwrite_exception is set to true."
|
400
|
+
resolution: "Change the name of the scope so it does not conflict
|
401
|
+
with the already defined method %{model_name}, or set the
|
402
|
+
configuration option Mongoid.scope_overwrite_exception to false,
|
403
|
+
which is its default. In this case a warning will be logged."
|
404
|
+
taken:
|
405
|
+
"is already taken"
|
406
|
+
too_many_nested_attribute_records:
|
407
|
+
message: "Accepting nested attributes for %{association} is limited
|
408
|
+
to %{limit} records."
|
409
|
+
summary: "More documents were sent to be processed than the allowed
|
410
|
+
limit."
|
411
|
+
resolution: "The limit is set as an option to the macro, for example:
|
412
|
+
accepts_nested_attributes_for :%{association}, limit: %{limit}.
|
413
|
+
Consider raising this limit or making sure no more are sent than
|
414
|
+
the set value."
|
415
|
+
unknown_attribute:
|
416
|
+
message: "Attempted to set a value for '%{name}' which is not
|
417
|
+
allowed on the model %{klass}."
|
418
|
+
summary: "Without including Mongoid::Attributes::Dynamic in your model
|
419
|
+
and the attribute does not already exist in the attributes hash,
|
420
|
+
attempting to call %{klass}#%{name}= for it is not allowed. This is
|
421
|
+
also triggered by passing the attribute to any method that accepts an
|
422
|
+
attributes hash, and is raised instead of getting a NoMethodError."
|
423
|
+
resolution: "You can include Mongoid::Attributes::Dynamic if you
|
424
|
+
expect to be writing values for undefined fields often."
|
425
|
+
unsaved_document:
|
426
|
+
message: "Attempted to save %{document} before the parent %{base}."
|
427
|
+
summary: "You cannot call create or create! through the
|
428
|
+
relation (%{document}) who's parent (%{base}) is
|
429
|
+
not already saved. This would case the database to be out of sync
|
430
|
+
since the child could potentially reference a nonexistant parent."
|
431
|
+
resolution: "Make sure to only use create or create! when the parent
|
432
|
+
document %{base} is persisted."
|
433
|
+
unsupported_javascript:
|
434
|
+
message: "Executing Javascript $where selector on an embedded criteria
|
435
|
+
is not supported."
|
436
|
+
summary: "Mongoid only supports providing a hash of arguments to
|
437
|
+
#where criterion on embedded documents. Since %{klass} is embedded,
|
438
|
+
the expression %{javascript} is not allowed."
|
439
|
+
resolution: "Please provide a standard hash to #where when the criteria
|
440
|
+
is for an embedded relation."
|
441
|
+
validations:
|
442
|
+
message: "Validation of %{document} failed."
|
443
|
+
summary: "The following errors were found: %{errors}"
|
444
|
+
resolution: "Try persisting the document with valid data or remove
|
445
|
+
the validations."
|
446
|
+
delete_restriction:
|
447
|
+
message: "Cannot delete %{document} because of dependent '%{relation}'."
|
448
|
+
summary: "When defining '%{relation}' with a :dependent => :restrict,
|
449
|
+
Mongoid will raise an error when attempting to delete the
|
450
|
+
%{document} when the child '%{relation}' still has documents in it."
|
451
|
+
resolution: "Don't attempt to delete the parent %{document} when
|
452
|
+
it has children, or change the dependent option on the relation."
|