Module: MongoMapper::Document::PickleAdapter
- Includes:
- Pickle::Adapter::Base
- Defined in:
- lib/pickle/adapters/mongo_mapper.rb
Class Method Summary collapse
-
.column_names(klass) ⇒ Object
get a list of column names for a given class.
-
.except_classes ⇒ Object
Do not consider these to be part of the class list.
-
.find_all_models(klass, conditions) ⇒ Object
Find all models matching conditions.
-
.find_first_model(klass, conditions) ⇒ Object
Find the first instance matching conditions.
-
.get_model(klass, id) ⇒ Object
Get an instance by id of the model.
-
.model_classes ⇒ Object
Gets a list of the available models for this adapter.
Class Method Details
.column_names(klass) ⇒ Object
get a list of column names for a given class
20 21 22 23 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 20 def self.column_names(klass) #klass.column_names klass.keys.keys.to_a end |
.except_classes ⇒ Object
Do not consider these to be part of the class list
10 11 12 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 10 def self.except_classes @@except_classes ||= [] end |
.find_all_models(klass, conditions) ⇒ Object
Find all models matching conditions
36 37 38 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 36 def self.find_all_models(klass, conditions) klass.all(:conditions => conditions) end |
.find_first_model(klass, conditions) ⇒ Object
Find the first instance matching conditions
31 32 33 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 31 def self.find_first_model(klass, conditions) klass.first(conditions) end |
.get_model(klass, id) ⇒ Object
Get an instance by id of the model
26 27 28 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 26 def self.get_model(klass, id) klass.find(id) end |
.model_classes ⇒ Object
Gets a list of the available models for this adapter
15 16 17 |
# File 'lib/pickle/adapters/mongo_mapper.rb', line 15 def self.model_classes @@model_classes ||= ObjectSpace.each_object(Class).select {|klass| klass.ancestors.include?(MongoMapper::Document) || klass.ancestors.include?(MongoMapper::EmbeddedDocument)} end |