Class: ActiveData::Model::Attributes::Reflections::Localized

Inherits:
Attribute
  • Object
show all
Defined in:
lib/active_data/model/attributes/reflections/localized.rb

Instance Attribute Summary

Attributes inherited from Base

#name, #options

Class Method Summary collapse

Methods inherited from Attribute

#defaultizer, #enumerizer, #normalizers

Methods inherited from Base

attribute_class, #build_attribute, #initialize, #inspect_reflection, #readonly, #type, #typecaster

Constructor Details

This class inherits a constructor from ActiveData::Model::Attributes::Reflections::Base

Class Method Details

.build(target, generated_methods, name, *args, &block) ⇒ Object



6
7
8
9
10
# File 'lib/active_data/model/attributes/reflections/localized.rb', line 6

def self.build(target, generated_methods, name, *args, &block)
  attribute = super(target, generated_methods, name, *args, &block)
  generate_methods name, generated_methods
  attribute
end

.generate_methods(name, target) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/active_data/model/attributes/reflections/localized.rb', line 12

def self.generate_methods(name, target)
  target.class_eval "    def \#{name}_translations\n      attribute('\#{name}').read\n    end\n\n    def \#{name}_translations= value\n      attribute('\#{name}').write(value)\n    end\n\n    def \#{name}\n      attribute('\#{name}').read_locale(self.class.locale)\n    end\n\n    def \#{name}= value\n      attribute('\#{name}').write_locale(value, self.class.locale)\n    end\n\n    def \#{name}?\n      attribute('\#{name}').locale_query(self.class.locale)\n    end\n\n    def \#{name}_before_type_cast\n      attribute('\#{name}').read_locale_before_type_cast(self.class.locale)\n    end\n  RUBY\nend\n", __FILE__, __LINE__ + 1