module Vinber::Instance

Public Instance Methods

vinber_value(attribute, options = {}) click to toggle source
# 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