mongoid-multi-db 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +615 -0
- data/LICENSE +20 -0
- data/README.md +62 -0
- data/Rakefile +49 -0
- data/lib/config/locales/bg.yml +54 -0
- data/lib/config/locales/de.yml +54 -0
- data/lib/config/locales/en-GB.yml +55 -0
- data/lib/config/locales/en.yml +55 -0
- data/lib/config/locales/es.yml +52 -0
- data/lib/config/locales/fr.yml +55 -0
- data/lib/config/locales/hi.yml +46 -0
- data/lib/config/locales/hu.yml +57 -0
- data/lib/config/locales/id.yml +55 -0
- data/lib/config/locales/it.yml +52 -0
- data/lib/config/locales/ja.yml +50 -0
- data/lib/config/locales/kr.yml +47 -0
- data/lib/config/locales/nl.yml +52 -0
- data/lib/config/locales/pl.yml +52 -0
- data/lib/config/locales/pt-BR.yml +53 -0
- data/lib/config/locales/pt.yml +53 -0
- data/lib/config/locales/ro.yml +59 -0
- data/lib/config/locales/ru.yml +54 -0
- data/lib/config/locales/sv.yml +53 -0
- data/lib/config/locales/vi.yml +55 -0
- data/lib/config/locales/zh-CN.yml +46 -0
- data/lib/mongoid.rb +148 -0
- data/lib/mongoid/atomic.rb +230 -0
- data/lib/mongoid/atomic/modifiers.rb +243 -0
- data/lib/mongoid/atomic/paths.rb +3 -0
- data/lib/mongoid/atomic/paths/embedded.rb +43 -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 +40 -0
- data/lib/mongoid/attributes.rb +234 -0
- data/lib/mongoid/attributes/processing.rb +146 -0
- data/lib/mongoid/callbacks.rb +135 -0
- data/lib/mongoid/collection.rb +153 -0
- data/lib/mongoid/collection_proxy.rb +59 -0
- data/lib/mongoid/collections.rb +120 -0
- data/lib/mongoid/collections/master.rb +45 -0
- data/lib/mongoid/collections/operations.rb +44 -0
- data/lib/mongoid/collections/retry.rb +46 -0
- data/lib/mongoid/components.rb +96 -0
- data/lib/mongoid/config.rb +347 -0
- data/lib/mongoid/config/database.rb +186 -0
- data/lib/mongoid/config/replset_database.rb +82 -0
- data/lib/mongoid/connection_proxy.rb +30 -0
- data/lib/mongoid/contexts.rb +25 -0
- data/lib/mongoid/contexts/enumerable.rb +288 -0
- data/lib/mongoid/contexts/enumerable/sort.rb +43 -0
- data/lib/mongoid/contexts/mongo.rb +409 -0
- data/lib/mongoid/copyable.rb +48 -0
- data/lib/mongoid/criteria.rb +418 -0
- data/lib/mongoid/criterion/builder.rb +34 -0
- data/lib/mongoid/criterion/complex.rb +84 -0
- data/lib/mongoid/criterion/creational.rb +34 -0
- data/lib/mongoid/criterion/exclusion.rb +108 -0
- data/lib/mongoid/criterion/inclusion.rb +305 -0
- data/lib/mongoid/criterion/inspection.rb +22 -0
- data/lib/mongoid/criterion/optional.rb +232 -0
- data/lib/mongoid/criterion/selector.rb +153 -0
- data/lib/mongoid/cursor.rb +86 -0
- data/lib/mongoid/database_proxy.rb +97 -0
- data/lib/mongoid/default_scope.rb +36 -0
- data/lib/mongoid/dirty.rb +110 -0
- data/lib/mongoid/document.rb +280 -0
- data/lib/mongoid/errors.rb +17 -0
- data/lib/mongoid/errors/callback.rb +26 -0
- data/lib/mongoid/errors/document_not_found.rb +28 -0
- data/lib/mongoid/errors/eager_load.rb +25 -0
- data/lib/mongoid/errors/invalid_collection.rb +18 -0
- data/lib/mongoid/errors/invalid_database.rb +19 -0
- data/lib/mongoid/errors/invalid_field.rb +18 -0
- data/lib/mongoid/errors/invalid_find.rb +19 -0
- data/lib/mongoid/errors/invalid_options.rb +28 -0
- data/lib/mongoid/errors/invalid_time.rb +25 -0
- data/lib/mongoid/errors/invalid_type.rb +25 -0
- data/lib/mongoid/errors/mixed_relations.rb +37 -0
- data/lib/mongoid/errors/mongoid_error.rb +26 -0
- data/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
- data/lib/mongoid/errors/unsaved_document.rb +23 -0
- data/lib/mongoid/errors/unsupported_version.rb +20 -0
- data/lib/mongoid/errors/validations.rb +23 -0
- data/lib/mongoid/extensions.rb +82 -0
- data/lib/mongoid/extensions/array/deletion.rb +29 -0
- data/lib/mongoid/extensions/false_class/equality.rb +26 -0
- data/lib/mongoid/extensions/hash/criteria_helpers.rb +45 -0
- data/lib/mongoid/extensions/hash/scoping.rb +25 -0
- data/lib/mongoid/extensions/integer/checks.rb +23 -0
- data/lib/mongoid/extensions/nil/collectionization.rb +23 -0
- data/lib/mongoid/extensions/object/checks.rb +29 -0
- data/lib/mongoid/extensions/object/reflections.rb +48 -0
- data/lib/mongoid/extensions/object/substitutable.rb +15 -0
- data/lib/mongoid/extensions/object/yoda.rb +44 -0
- data/lib/mongoid/extensions/object_id/conversions.rb +60 -0
- data/lib/mongoid/extensions/proc/scoping.rb +25 -0
- data/lib/mongoid/extensions/string/checks.rb +36 -0
- data/lib/mongoid/extensions/string/conversions.rb +22 -0
- data/lib/mongoid/extensions/string/inflections.rb +118 -0
- data/lib/mongoid/extensions/symbol/checks.rb +23 -0
- data/lib/mongoid/extensions/symbol/inflections.rb +66 -0
- data/lib/mongoid/extensions/true_class/equality.rb +26 -0
- data/lib/mongoid/extras.rb +31 -0
- data/lib/mongoid/factory.rb +46 -0
- data/lib/mongoid/fields.rb +332 -0
- data/lib/mongoid/fields/mappings.rb +41 -0
- data/lib/mongoid/fields/serializable.rb +201 -0
- data/lib/mongoid/fields/serializable/array.rb +49 -0
- data/lib/mongoid/fields/serializable/big_decimal.rb +42 -0
- data/lib/mongoid/fields/serializable/bignum.rb +10 -0
- data/lib/mongoid/fields/serializable/binary.rb +11 -0
- data/lib/mongoid/fields/serializable/boolean.rb +43 -0
- data/lib/mongoid/fields/serializable/date.rb +51 -0
- data/lib/mongoid/fields/serializable/date_time.rb +28 -0
- data/lib/mongoid/fields/serializable/fixnum.rb +10 -0
- data/lib/mongoid/fields/serializable/float.rb +32 -0
- data/lib/mongoid/fields/serializable/foreign_keys/array.rb +42 -0
- data/lib/mongoid/fields/serializable/foreign_keys/object.rb +47 -0
- data/lib/mongoid/fields/serializable/hash.rb +11 -0
- data/lib/mongoid/fields/serializable/integer.rb +44 -0
- data/lib/mongoid/fields/serializable/localized.rb +41 -0
- data/lib/mongoid/fields/serializable/nil_class.rb +38 -0
- data/lib/mongoid/fields/serializable/object.rb +11 -0
- data/lib/mongoid/fields/serializable/object_id.rb +31 -0
- data/lib/mongoid/fields/serializable/range.rb +42 -0
- data/lib/mongoid/fields/serializable/set.rb +42 -0
- data/lib/mongoid/fields/serializable/string.rb +27 -0
- data/lib/mongoid/fields/serializable/symbol.rb +27 -0
- data/lib/mongoid/fields/serializable/time.rb +23 -0
- data/lib/mongoid/fields/serializable/time_with_zone.rb +23 -0
- data/lib/mongoid/fields/serializable/timekeeping.rb +106 -0
- data/lib/mongoid/finders.rb +152 -0
- data/lib/mongoid/hierarchy.rb +120 -0
- data/lib/mongoid/identity.rb +92 -0
- data/lib/mongoid/identity_map.rb +119 -0
- data/lib/mongoid/indexes.rb +54 -0
- data/lib/mongoid/inspection.rb +54 -0
- data/lib/mongoid/javascript.rb +20 -0
- data/lib/mongoid/javascript/functions.yml +63 -0
- data/lib/mongoid/json.rb +16 -0
- data/lib/mongoid/keys.rb +144 -0
- data/lib/mongoid/logger.rb +39 -0
- data/lib/mongoid/matchers.rb +32 -0
- data/lib/mongoid/matchers/all.rb +21 -0
- data/lib/mongoid/matchers/and.rb +30 -0
- data/lib/mongoid/matchers/default.rb +70 -0
- data/lib/mongoid/matchers/exists.rb +23 -0
- data/lib/mongoid/matchers/gt.rb +21 -0
- data/lib/mongoid/matchers/gte.rb +21 -0
- data/lib/mongoid/matchers/in.rb +21 -0
- data/lib/mongoid/matchers/lt.rb +21 -0
- data/lib/mongoid/matchers/lte.rb +21 -0
- data/lib/mongoid/matchers/ne.rb +21 -0
- data/lib/mongoid/matchers/nin.rb +21 -0
- data/lib/mongoid/matchers/or.rb +33 -0
- data/lib/mongoid/matchers/size.rb +21 -0
- data/lib/mongoid/matchers/strategies.rb +93 -0
- data/lib/mongoid/multi_database.rb +31 -0
- data/lib/mongoid/multi_parameter_attributes.rb +106 -0
- data/lib/mongoid/named_scope.rb +146 -0
- data/lib/mongoid/nested_attributes.rb +54 -0
- data/lib/mongoid/observer.rb +170 -0
- data/lib/mongoid/paranoia.rb +158 -0
- data/lib/mongoid/persistence.rb +264 -0
- data/lib/mongoid/persistence/atomic.rb +223 -0
- data/lib/mongoid/persistence/atomic/add_to_set.rb +35 -0
- data/lib/mongoid/persistence/atomic/bit.rb +37 -0
- data/lib/mongoid/persistence/atomic/inc.rb +31 -0
- data/lib/mongoid/persistence/atomic/operation.rb +85 -0
- data/lib/mongoid/persistence/atomic/pop.rb +34 -0
- data/lib/mongoid/persistence/atomic/pull.rb +34 -0
- data/lib/mongoid/persistence/atomic/pull_all.rb +34 -0
- data/lib/mongoid/persistence/atomic/push.rb +31 -0
- data/lib/mongoid/persistence/atomic/push_all.rb +31 -0
- data/lib/mongoid/persistence/atomic/rename.rb +31 -0
- data/lib/mongoid/persistence/atomic/sets.rb +30 -0
- data/lib/mongoid/persistence/atomic/unset.rb +28 -0
- data/lib/mongoid/persistence/deletion.rb +32 -0
- data/lib/mongoid/persistence/insertion.rb +41 -0
- data/lib/mongoid/persistence/modification.rb +37 -0
- data/lib/mongoid/persistence/operations.rb +211 -0
- data/lib/mongoid/persistence/operations/embedded/insert.rb +42 -0
- data/lib/mongoid/persistence/operations/embedded/remove.rb +40 -0
- data/lib/mongoid/persistence/operations/insert.rb +34 -0
- data/lib/mongoid/persistence/operations/remove.rb +33 -0
- data/lib/mongoid/persistence/operations/update.rb +64 -0
- data/lib/mongoid/railtie.rb +126 -0
- data/lib/mongoid/railties/database.rake +182 -0
- data/lib/mongoid/railties/document.rb +12 -0
- data/lib/mongoid/relations.rb +144 -0
- data/lib/mongoid/relations/accessors.rb +138 -0
- data/lib/mongoid/relations/auto_save.rb +38 -0
- data/lib/mongoid/relations/binding.rb +26 -0
- data/lib/mongoid/relations/bindings.rb +9 -0
- data/lib/mongoid/relations/bindings/embedded/in.rb +69 -0
- data/lib/mongoid/relations/bindings/embedded/many.rb +93 -0
- data/lib/mongoid/relations/bindings/embedded/one.rb +61 -0
- data/lib/mongoid/relations/bindings/referenced/in.rb +76 -0
- data/lib/mongoid/relations/bindings/referenced/many.rb +54 -0
- data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +51 -0
- data/lib/mongoid/relations/bindings/referenced/one.rb +58 -0
- data/lib/mongoid/relations/builder.rb +57 -0
- data/lib/mongoid/relations/builders.rb +83 -0
- data/lib/mongoid/relations/builders/embedded/in.rb +29 -0
- data/lib/mongoid/relations/builders/embedded/many.rb +40 -0
- data/lib/mongoid/relations/builders/embedded/one.rb +30 -0
- data/lib/mongoid/relations/builders/nested_attributes/many.rb +110 -0
- data/lib/mongoid/relations/builders/nested_attributes/one.rb +135 -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 +38 -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 +19 -0
- data/lib/mongoid/relations/cascading/destroy.rb +26 -0
- data/lib/mongoid/relations/cascading/nullify.rb +18 -0
- data/lib/mongoid/relations/cascading/strategy.rb +26 -0
- data/lib/mongoid/relations/constraint.rb +42 -0
- data/lib/mongoid/relations/conversions.rb +35 -0
- data/lib/mongoid/relations/cyclic.rb +103 -0
- data/lib/mongoid/relations/embedded/atomic.rb +89 -0
- data/lib/mongoid/relations/embedded/atomic/operation.rb +63 -0
- data/lib/mongoid/relations/embedded/atomic/pull.rb +65 -0
- data/lib/mongoid/relations/embedded/atomic/push_all.rb +59 -0
- data/lib/mongoid/relations/embedded/atomic/set.rb +61 -0
- data/lib/mongoid/relations/embedded/atomic/unset.rb +41 -0
- data/lib/mongoid/relations/embedded/in.rb +220 -0
- data/lib/mongoid/relations/embedded/many.rb +560 -0
- data/lib/mongoid/relations/embedded/one.rb +206 -0
- data/lib/mongoid/relations/embedded/sort.rb +31 -0
- data/lib/mongoid/relations/macros.rb +310 -0
- data/lib/mongoid/relations/many.rb +135 -0
- data/lib/mongoid/relations/metadata.rb +919 -0
- data/lib/mongoid/relations/nested_builder.rb +75 -0
- data/lib/mongoid/relations/one.rb +36 -0
- data/lib/mongoid/relations/options.rb +47 -0
- data/lib/mongoid/relations/polymorphic.rb +40 -0
- data/lib/mongoid/relations/proxy.rb +145 -0
- data/lib/mongoid/relations/referenced/batch.rb +72 -0
- data/lib/mongoid/relations/referenced/batch/insert.rb +57 -0
- data/lib/mongoid/relations/referenced/in.rb +262 -0
- data/lib/mongoid/relations/referenced/many.rb +623 -0
- data/lib/mongoid/relations/referenced/many_to_many.rb +396 -0
- data/lib/mongoid/relations/referenced/one.rb +272 -0
- data/lib/mongoid/relations/reflections.rb +62 -0
- data/lib/mongoid/relations/synchronization.rb +153 -0
- data/lib/mongoid/relations/targets.rb +2 -0
- data/lib/mongoid/relations/targets/enumerable.rb +372 -0
- data/lib/mongoid/reloading.rb +91 -0
- data/lib/mongoid/safety.rb +105 -0
- data/lib/mongoid/scope.rb +31 -0
- data/lib/mongoid/serialization.rb +134 -0
- data/lib/mongoid/sharding.rb +61 -0
- data/lib/mongoid/state.rb +97 -0
- data/lib/mongoid/threaded.rb +530 -0
- data/lib/mongoid/threaded/lifecycle.rb +192 -0
- data/lib/mongoid/timestamps.rb +15 -0
- data/lib/mongoid/timestamps/created.rb +24 -0
- data/lib/mongoid/timestamps/timeless.rb +50 -0
- data/lib/mongoid/timestamps/updated.rb +26 -0
- data/lib/mongoid/validations.rb +140 -0
- data/lib/mongoid/validations/associated.rb +46 -0
- data/lib/mongoid/validations/uniqueness.rb +145 -0
- data/lib/mongoid/version.rb +4 -0
- data/lib/mongoid/versioning.rb +185 -0
- data/lib/rack/mongoid.rb +2 -0
- data/lib/rack/mongoid/middleware/identity_map.rb +38 -0
- data/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +20 -0
- data/lib/rails/generators/mongoid/model/model_generator.rb +24 -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 +70 -0
- data/lib/rails/mongoid.rb +91 -0
- metadata +465 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 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
|
+
Overview
|
2
|
+
========
|
3
|
+
|
4
|
+
About Mongoid
|
5
|
+
-------------
|
6
|
+
|
7
|
+
Mongoid is an ODM (Object-Document-Mapper) framework for MongoDB in Ruby.
|
8
|
+
|
9
|
+
Project Tracking
|
10
|
+
----------------
|
11
|
+
|
12
|
+
* [Mongoid Google Group](http://groups.google.com/group/mongoid)
|
13
|
+
* [Mongoid Website and Documentation](http://mongoid.org)
|
14
|
+
|
15
|
+
Compatibility
|
16
|
+
-------------
|
17
|
+
|
18
|
+
Mongoid is tested against Ruby 1.8.7, 1.9.2, 1.9.3, REE, Rubinius, and JRuby.
|
19
|
+
|
20
|
+
<img src="https://secure.travis-ci.org/mongoid/mongoid.png?branch=master&.png"/>
|
21
|
+
|
22
|
+
[Build History](http://travis-ci.org/mongoid/mongoid)
|
23
|
+
|
24
|
+
Documentation
|
25
|
+
-------------
|
26
|
+
|
27
|
+
Please see the new Mongoid website for up-to-date documentation:
|
28
|
+
[mongoid.org](http://mongoid.org)
|
29
|
+
|
30
|
+
Donating
|
31
|
+
--------
|
32
|
+
|
33
|
+
* [Support Mongoid at Pledgie](http://www.pledgie.com/campaigns/7757)
|
34
|
+
|
35
|
+
License
|
36
|
+
-------
|
37
|
+
|
38
|
+
Copyright (c) 2009, 2010, 2011 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,49 @@
|
|
1
|
+
require "bundler"
|
2
|
+
Bundler.setup
|
3
|
+
|
4
|
+
require "rake"
|
5
|
+
require "rdoc/task"
|
6
|
+
require "rspec"
|
7
|
+
require "rspec/core/rake_task"
|
8
|
+
|
9
|
+
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
10
|
+
require "mongoid/version"
|
11
|
+
|
12
|
+
task :gem => :build
|
13
|
+
task :build do
|
14
|
+
system "gem build mongoid.gemspec"
|
15
|
+
end
|
16
|
+
|
17
|
+
task :install => :build do
|
18
|
+
system "sudo gem install mongoid-#{Mongoid::VERSION}.gem"
|
19
|
+
end
|
20
|
+
|
21
|
+
task :release => :build do
|
22
|
+
system "git tag -a v#{Mongoid::VERSION} -m 'Tagging #{Mongoid::VERSION}'"
|
23
|
+
system "git push --tags"
|
24
|
+
system "gem push mongoid-#{Mongoid::VERSION}.gem"
|
25
|
+
end
|
26
|
+
|
27
|
+
RSpec::Core::RakeTask.new("spec:unit") do |spec|
|
28
|
+
spec.pattern = "spec/unit/**/*_spec.rb"
|
29
|
+
end
|
30
|
+
|
31
|
+
RSpec::Core::RakeTask.new("spec:functional") do |spec|
|
32
|
+
spec.pattern = "spec/functional/**/*_spec.rb"
|
33
|
+
end
|
34
|
+
|
35
|
+
RSpec::Core::RakeTask.new('spec:progress') do |spec|
|
36
|
+
spec.rspec_opts = %w(--format progress)
|
37
|
+
spec.pattern = "spec/**/*_spec.rb"
|
38
|
+
end
|
39
|
+
|
40
|
+
RDoc::Task.new do |rdoc|
|
41
|
+
rdoc.rdoc_dir = "rdoc"
|
42
|
+
rdoc.title = "mongoid #{Mongoid::VERSION}"
|
43
|
+
rdoc.rdoc_files.include("README*")
|
44
|
+
rdoc.rdoc_files.include("CHANGELOG*")
|
45
|
+
rdoc.rdoc_files.include("lib/**/*.rb")
|
46
|
+
end
|
47
|
+
|
48
|
+
task :spec => [ "spec:functional", "spec:unit" ]
|
49
|
+
task :default => :spec
|
@@ -0,0 +1,54 @@
|
|
1
|
+
bg:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
е вече заето
|
7
|
+
callbacks:
|
8
|
+
"Calling %{method} on %{klass} resulted in a false return from a callback."
|
9
|
+
document_not_found:
|
10
|
+
Не е намерен документ %{klass} с id(та) %{identifiers}.
|
11
|
+
eager_load:
|
12
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
13
|
+
or polymorphic belongs_to relation."
|
14
|
+
invalid_database:
|
15
|
+
Базата данни трябва да е от тип Mnogo:DB, а не %{name}.
|
16
|
+
invalid_time:
|
17
|
+
"'%{value}' is not a valid Time."
|
18
|
+
invalid_type:
|
19
|
+
Полето е дефинирано като a(n) %{klass}, но се присвоява %{other}
|
20
|
+
със стойност %{value}.
|
21
|
+
invalid_options:
|
22
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
23
|
+
are: %{valid}."
|
24
|
+
unsupported_version:
|
25
|
+
MongoDB %{version} не се подържа, моля ползвайте версия след %{mongo_version}.
|
26
|
+
validations:
|
27
|
+
Неуспешна валидация - %{errors} грешки.
|
28
|
+
invalid_collection:
|
29
|
+
Достъпа до колекцията за %{klass} не е разрешена, тъй като
|
30
|
+
тя е вложен документ, можете да я достъпите през главният документ
|
31
|
+
invalid_field:
|
32
|
+
Дефинирането на поле с име %{name} не е разрешено. Не дефинирайте
|
33
|
+
полета, които са в конфликт с Mongoid вътрешните атрибути.
|
34
|
+
Можете да ги видите с Document#instance_methods
|
35
|
+
too_many_nested_attribute_records:
|
36
|
+
Присвояването на вложини атрибути за %{association} е
|
37
|
+
ограничено до %{limit} записа
|
38
|
+
embedded_in_must_have_inverse_of:
|
39
|
+
Опциите на embedded_in асоциацията трябва да съдържат inverse_of.
|
40
|
+
dependent_only_references_one_or_many:
|
41
|
+
Опцията dependent => destroy|delete, която е посочена е
|
42
|
+
валидна само за references_one или references_many връзки
|
43
|
+
association_cant_have_inverse_of:
|
44
|
+
Дефинирането на inverse_of за тази асоциация не е позволено.
|
45
|
+
Използвайте тази опция само за embedded_in или
|
46
|
+
references_many като масив.
|
47
|
+
calling_document_find_with_nil_is_invalid:
|
48
|
+
Извикването на Document#find със nil е невалидно
|
49
|
+
unsaved_document:
|
50
|
+
You cannot call create or create! through a relational association
|
51
|
+
relation (%{document}) who's parent (%{base}) is not already saved.
|
52
|
+
mixed_relations:
|
53
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
54
|
+
relational association is not allowed since the %{embedded} is embedded.
|
@@ -0,0 +1,54 @@
|
|
1
|
+
de:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
ist bereits vergeben
|
7
|
+
callbacks:
|
8
|
+
"Calling %{method} on %{klass} resulted in a false return from a callback."
|
9
|
+
document_not_found:
|
10
|
+
Dokument für Klasse %{klass} mit ID(s) %{identifiers} nicht gefunden.
|
11
|
+
eager_load:
|
12
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
13
|
+
or polymorphic belongs_to relation."
|
14
|
+
invalid_database:
|
15
|
+
Datenbank sollte eine Mongo::DB sein, nicht %{name}.
|
16
|
+
invalid_time:
|
17
|
+
"'%{value}' ist keine berechtigte Zeit."
|
18
|
+
invalid_type:
|
19
|
+
Feld wurde als a(n) %{klass} definiert, doch der Wert %{value} vom Typ
|
20
|
+
%{other} wurde übergeben.
|
21
|
+
invalid_options:
|
22
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
23
|
+
are: %{valid}."
|
24
|
+
unsupported_version:
|
25
|
+
MongoDB %{version} wird nicht unterstützt, bitte auf Version
|
26
|
+
%{mongo_version} aktualisieren.
|
27
|
+
validations:
|
28
|
+
Validierung fehlgeschlagen - %{errors}.
|
29
|
+
invalid_collection:
|
30
|
+
Zugriff auf die Collection von %{klass} ist nicht erlaubt,
|
31
|
+
da es sich um ein eingebettetes Dokument handelt. Auf die Collection
|
32
|
+
kann vom Wurzeldokument aus zugegriffen werden.
|
33
|
+
invalid_field:
|
34
|
+
Das Feld %{name} kann nicht definiert werden, da sein Name mit
|
35
|
+
einem internen Mongoid-Attribut oder Methodennamen kollidiert.
|
36
|
+
Siehe Document#instance_methods für eine Auflistung dieser Namen.
|
37
|
+
too_many_nested_attribute_records:
|
38
|
+
Verschachtelte Attribute für %{association} sind auf %{limit} Einträge
|
39
|
+
beschränkt.
|
40
|
+
embedded_in_must_have_inverse_of:
|
41
|
+
Die Optionen für eine embedded_in-Beziehung müssen inverse_of beinhalten.
|
42
|
+
dependent_only_references_one_or_many:
|
43
|
+
Die dependent => destroy|delete-Option ist nur für
|
44
|
+
references_one oder references_many-Beziehungen gültig.
|
45
|
+
association_cant_have_inverse_of:
|
46
|
+
Es ist nicht erlaubt, inverse_of für diese Beziehung zu definieren.
|
47
|
+
Diese Option kann nur für embedded_in oder references_many als Array
|
48
|
+
verwendet werden.
|
49
|
+
unsaved_document:
|
50
|
+
You cannot call create or create! through a relational association
|
51
|
+
relation (%{document}) who's parent (%{base}) is not already saved.
|
52
|
+
mixed_relations:
|
53
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
54
|
+
relational association is not allowed since the %{embedded} is embedded.
|
@@ -0,0 +1,55 @@
|
|
1
|
+
en-GB:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
is already taken
|
7
|
+
callbacks:
|
8
|
+
"Calling %{method} on %{klass} resulted in a false return from a callback."
|
9
|
+
document_not_found:
|
10
|
+
Document not found for class %{klass} with id(s) %{identifiers}.
|
11
|
+
eager_load:
|
12
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
13
|
+
or polymorphic belongs_to relation."
|
14
|
+
invalid_database:
|
15
|
+
"Database should be a Mongo::DB, not %{name}."
|
16
|
+
invalid_options:
|
17
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
18
|
+
are: %{valid}."
|
19
|
+
invalid_time:
|
20
|
+
"'%{value}' is not a valid Time."
|
21
|
+
invalid_type:
|
22
|
+
Field was defined as a(n) %{klass}, but received a %{other} with
|
23
|
+
the value %{value}.
|
24
|
+
unsupported_version:
|
25
|
+
MongoDB %{version} not supported, please upgrade
|
26
|
+
to %{mongo_version}.
|
27
|
+
validations:
|
28
|
+
Validation failed - %{errors}.
|
29
|
+
invalid_collection:
|
30
|
+
Access to the collection for %{klass} is not allowed since it
|
31
|
+
is an embedded document, please access a collection from
|
32
|
+
the root document.
|
33
|
+
invalid_field:
|
34
|
+
Defining a field named %{name} is not allowed. Do not define
|
35
|
+
fields that conflict with Mongoid internal attributes or method
|
36
|
+
names. Use Document#instance_methods to see what names this includes.
|
37
|
+
too_many_nested_attribute_records:
|
38
|
+
Accepting nested attributes for %{association} is limited
|
39
|
+
to %{limit} records.
|
40
|
+
embedded_in_must_have_inverse_of:
|
41
|
+
Options for embedded_in association must include inverse_of.
|
42
|
+
dependent_only_references_one_or_many:
|
43
|
+
The dependent => destroy|delete option that was supplied
|
44
|
+
is only valid on references_one or references_many associations.
|
45
|
+
association_cant_have_inverse_of:
|
46
|
+
Defining an inverse_of on this association is not allowed. Only
|
47
|
+
use this option on embedded_in or references_many as array.
|
48
|
+
calling_document_find_with_nil_is_invalid:
|
49
|
+
Calling Document#find with nil is invalid
|
50
|
+
unsaved_document:
|
51
|
+
"You cannot call create or create! through a relational association
|
52
|
+
relation (%{document}) who's parent (%{base}) is not already saved."
|
53
|
+
mixed_relations:
|
54
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
55
|
+
relational association is not allowed since the %{embedded} is embedded.
|
@@ -0,0 +1,55 @@
|
|
1
|
+
en:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
is already taken
|
7
|
+
callbacks:
|
8
|
+
"Calling %{method} on %{klass} resulted in a false return from a callback."
|
9
|
+
document_not_found:
|
10
|
+
Document not found for class %{klass} with id(s) %{identifiers}.
|
11
|
+
eager_load:
|
12
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
13
|
+
or polymorphic belongs_to relation."
|
14
|
+
invalid_database:
|
15
|
+
"Database should be a Mongo::DB, not %{name}."
|
16
|
+
invalid_time:
|
17
|
+
"'%{value}' is not a valid Time."
|
18
|
+
invalid_options:
|
19
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
20
|
+
are: %{valid}."
|
21
|
+
invalid_type:
|
22
|
+
Field was defined as a(n) %{klass}, but received a %{other} with
|
23
|
+
the value %{value}.
|
24
|
+
unsupported_version:
|
25
|
+
MongoDB %{version} not supported, please upgrade
|
26
|
+
to %{mongo_version}.
|
27
|
+
validations:
|
28
|
+
Validation failed - %{errors}.
|
29
|
+
invalid_collection:
|
30
|
+
Access to the collection for %{klass} is not allowed since it
|
31
|
+
is an embedded document, please access a collection from
|
32
|
+
the root document.
|
33
|
+
invalid_field:
|
34
|
+
Defining a field named %{name} is not allowed. Do not define
|
35
|
+
fields that conflict with Mongoid internal attributes or method
|
36
|
+
names. Use Mongoid.destructive_fields to see what names this includes.
|
37
|
+
too_many_nested_attribute_records:
|
38
|
+
Accepting nested attributes for %{association} is limited
|
39
|
+
to %{limit} records.
|
40
|
+
embedded_in_must_have_inverse_of:
|
41
|
+
Options for embedded_in association must include inverse_of.
|
42
|
+
dependent_only_references_one_or_many:
|
43
|
+
The dependent => destroy|delete option that was supplied
|
44
|
+
is only valid on references_one or references_many associations.
|
45
|
+
association_cant_have_inverse_of:
|
46
|
+
Defining an inverse_of on this association is not allowed. Only
|
47
|
+
use this option on embedded_in or references_many as array.
|
48
|
+
calling_document_find_with_nil_is_invalid:
|
49
|
+
Calling Document#find with nil is invalid
|
50
|
+
unsaved_document:
|
51
|
+
"You cannot call create or create! through a relational association
|
52
|
+
relation (%{document}) who's parent (%{base}) is not already saved."
|
53
|
+
mixed_relations:
|
54
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
55
|
+
relational association is not allowed since the %{embedded} is embedded.
|
@@ -0,0 +1,52 @@
|
|
1
|
+
es:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
ya está en uso
|
7
|
+
document_not_found:
|
8
|
+
No se encontró ningún documento para la clase %{klass} con los id(s) %{identifiers}.
|
9
|
+
eager_load:
|
10
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
11
|
+
or polymorphic belongs_to relation."
|
12
|
+
invalid_database:
|
13
|
+
La base de datos debería ser una instancia de Mongo::DB, en lugar de %{name}.
|
14
|
+
invalid_time:
|
15
|
+
"'%{value}' is not a valid Time."
|
16
|
+
invalid_type:
|
17
|
+
El campo se definió como %{klass}, pero recibió una instancia de %{other}
|
18
|
+
con el valor %{value}.
|
19
|
+
invalid_options:
|
20
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
21
|
+
are: %{valid}."
|
22
|
+
unsupported_version:
|
23
|
+
MongoDB %{version} no está soportada, por favor actualize a
|
24
|
+
%{mongo_version}.
|
25
|
+
validations:
|
26
|
+
La validación falló - %{errors}.
|
27
|
+
invalid_collection:
|
28
|
+
El acceso a la colección %{klass} no está permitido, ya que
|
29
|
+
es un documento incrustado, por favor acceda a la colección
|
30
|
+
desde el documento raíz.
|
31
|
+
invalid_field:
|
32
|
+
No está permitido definir un campo con el nombre %{name}. No
|
33
|
+
defina campos que entren en conflicto con los atributos internos o
|
34
|
+
nombres de métodos de Mongoid. Utilice Document#instance_methods para
|
35
|
+
consultar los nombres ya incluidos.
|
36
|
+
too_many_nested_attribute_records:
|
37
|
+
La aceptación de atributos anidados para %{association} está limitada
|
38
|
+
a %{limit} registros.
|
39
|
+
embedded_in_must_have_inverse_of:
|
40
|
+
Las opciones de una asociación embedded_in deben incluir inverse_of.
|
41
|
+
dependent_only_references_one_or_many:
|
42
|
+
La opción dependent => destroy|delete proporcionada
|
43
|
+
sólo es válida en asociaciones references_one o references_many.
|
44
|
+
association_cant_have_inverse_of:
|
45
|
+
No está permitido definir inverse_of en esta asociación. Utilice
|
46
|
+
esta opción sólo en embedded_in o en references_many as array.
|
47
|
+
unsaved_document:
|
48
|
+
You cannot call create or create! through a relational association
|
49
|
+
relation (%{document}) who's parent (%{base}) is not already saved.
|
50
|
+
mixed_relations:
|
51
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
52
|
+
relational association is not allowed since the %{embedded} is embedded.
|
@@ -0,0 +1,55 @@
|
|
1
|
+
fr:
|
2
|
+
mongoid:
|
3
|
+
errors:
|
4
|
+
messages:
|
5
|
+
taken:
|
6
|
+
est déjà pris.
|
7
|
+
callbacks:
|
8
|
+
"Calling %{method} on %{klass} resulted in a false return from a callback."
|
9
|
+
document_not_found:
|
10
|
+
Document introuvable pour la classe %{klass} avec les ids %{identifiers}.
|
11
|
+
eager_load:
|
12
|
+
"Eager loading :%{name} is not supported due to it being a many-to-many
|
13
|
+
or polymorphic belongs_to relation."
|
14
|
+
invalid_time:
|
15
|
+
"'%{value}' is not a valid Time."
|
16
|
+
invalid_database:
|
17
|
+
La base de données doit être une Mongo::DB, pas %{name}.
|
18
|
+
invalid_type:
|
19
|
+
Le champ a été défini comme un(e) %{klass} mais a reçu un(e)
|
20
|
+
%{other} avec la valeur %{value}.
|
21
|
+
invalid_options:
|
22
|
+
"Invalid option :%{invalid} provided to relation :%{name}. Valid options
|
23
|
+
are: %{valid}."
|
24
|
+
unsupported_version:
|
25
|
+
"MongoDB %{version} n'est pas supporté, veuillez mettre à jour avec
|
26
|
+
%{mongo_version}"
|
27
|
+
validations:
|
28
|
+
La validation a échouée - %{errors}.
|
29
|
+
invalid_collection:
|
30
|
+
"L'accès à la collection pour %{klass} n'est pas autorisé puisque
|
31
|
+
ce n'est pas un document embarqué, veuillez accéder à la collection
|
32
|
+
depuis le document racine."
|
33
|
+
invalid_field:
|
34
|
+
"Définir un champ appellé %{name} n'est pas autorisé. Veuillez ne
|
35
|
+
pas définir de champs en conflit avec les attributs internes de
|
36
|
+
Mongoid ou des noms de méthodes. Utilisez Document#instance_methods
|
37
|
+
pour consulter la liste des noms."
|
38
|
+
too_many_nested_attribute_records:
|
39
|
+
"Le nombre d'attributs imbriqués pour %{association} est limité à
|
40
|
+
%{limit} enregistrements."
|
41
|
+
embedded_in_must_have_inverse_of:
|
42
|
+
Les options pour les associations embedded_in doivent inclure
|
43
|
+
inverse_of.
|
44
|
+
dependent_only_references_one_or_many:
|
45
|
+
"L'option dependent => destroy|delete fournie est seulement valide
|
46
|
+
pour les associations references_on ou references_many."
|
47
|
+
association_cant_have_inverse_of:
|
48
|
+
"Definir un inverse_of pour cette association n'est pas autorisé.
|
49
|
+
Utilisez cette option seulement sur embedded_in ou references_many."
|
50
|
+
unsaved_document:
|
51
|
+
You cannot call create or create! through a relational association
|
52
|
+
relation (%{document}) who's parent (%{base}) is not already saved.
|
53
|
+
mixed_relations:
|
54
|
+
Referencing a(n) %{embedded} document from the %{root} document via a
|
55
|
+
relational association is not allowed since the %{embedded} is embedded.
|