Class: MongoMapper::Plugins::Keys::Key

Inherits:
Object
  • Object
show all
Defined in:
lib/mongo_mapper/plugins/keys.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Key

Returns a new instance of Key.



291
292
293
294
295
296
# File 'lib/mongo_mapper/plugins/keys.rb', line 291

def initialize(*args)
  options = args.extract_options!
  @name, @type = args.shift.to_s, args.shift
  self.options = (options || {}).symbolize_keys
  self.default_value = self.options.delete(:default)
end

Instance Attribute Details

#default_valueObject

Returns the value of attribute default_value.



289
290
291
# File 'lib/mongo_mapper/plugins/keys.rb', line 289

def default_value
  @default_value
end

#nameObject

Returns the value of attribute name.



289
290
291
# File 'lib/mongo_mapper/plugins/keys.rb', line 289

def name
  @name
end

#optionsObject

Returns the value of attribute options.



289
290
291
# File 'lib/mongo_mapper/plugins/keys.rb', line 289

def options
  @options
end

#typeObject

Returns the value of attribute type.



289
290
291
# File 'lib/mongo_mapper/plugins/keys.rb', line 289

def type
  @type
end

Instance Method Details

#==(other) ⇒ Object



298
299
300
# File 'lib/mongo_mapper/plugins/keys.rb', line 298

def ==(other)
  @name == other.name && @type == other.type
end

#embeddable?Boolean

Returns:



302
303
304
# File 'lib/mongo_mapper/plugins/keys.rb', line 302

def embeddable?
  type.respond_to?(:embeddable?) && type.embeddable? ? true : false
end

#get(value) ⇒ Object



310
311
312
313
314
315
316
# File 'lib/mongo_mapper/plugins/keys.rb', line 310

def get(value)
  if value.nil? && !default_value.nil?
    return default_value
  end

  type.from_mongo(value)
end

#number?Boolean

Returns:



306
307
308
# File 'lib/mongo_mapper/plugins/keys.rb', line 306

def number?
  [Integer, Float].include?(type)
end

#set(value) ⇒ Object



318
319
320
# File 'lib/mongo_mapper/plugins/keys.rb', line 318

def set(value)
  type.to_mongo(value)
end