Class: Bartleby::BelongsToOptions

Inherits:
AssocOptions show all
Defined in:
lib/bartleby/associatable.rb

Instance Attribute Summary

Attributes inherited from AssocOptions

#class_name, #foreign_key, #primary_key

Instance Method Summary collapse

Methods inherited from AssocOptions

#model_class, #table_name

Constructor Details

#initialize(name, options = {}) ⇒ BelongsToOptions

Returns a new instance of BelongsToOptions.



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/bartleby/associatable.rb', line 22

def initialize(name, options = {})
  defaults = {
    foreign_key: "#{name}_id".to_sym,
    primary_key: :id,
    class_name: name.to_s.singularize.capitalize
  }

  self.foreign_key = options[:foreign_key] || defaults[:foreign_key]
  self.primary_key = options[:primary_key] || defaults[:primary_key]
  self.class_name =  options[:class_name]  || defaults[:class_name]
end