Module: Vinber::Instance

Defined in:
lib/vinber/vinber_instance.rb

Instance Method Summary collapse

Instance Method Details

#vinber_value(attribute, options = {}) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/vinber/vinber_instance.rb', line 4

def vinber_value(attribute, options = {})
  obj   = self
  klass = obj.class
  val   = obj.send(attribute.to_sym)
  t     = options.fetch(:t) {true}

  if klass.vinber_defined?(attribute) &&
    (attribute_vinber = klass.defined_vinbers[attribute.to_s]).is_a?(Hash)

    attribute_vinber_key = attribute_vinber.key val
    t ? Vinber::Translate.new(klass, attribute, attribute_vinber_key).to_s : attribute_vinber_key.to_s
  elsif [true, false].include?(val)
    t ? Vinber::Translate.new(klass, attribute, val).to_s : val
  else
    val
  end
end