Sha256: d14efe1eaacee0e9246fef07cea28782204548283e5c05b34636be29a41a464d
Contents?: true
Size: 997 Bytes
Versions: 1
Compression:
Stored size: 997 Bytes
Contents
require 'mongoid/i18n/localized_field' require 'mongoid/i18n/localized_criteria' module Mongoid module I18n extend ActiveSupport::Concern module ClassMethods def localized_field(name, options = {}) field name, options.merge(:type => LocalizedField) end def criteria scope = scope_stack.last rescue nil scope || I18n::LocalizedCriteria.new(self) end protected def create_accessors(name, meth, options = {}) if options[:type] == LocalizedField define_method(meth) { read_attribute(name)[::I18n.locale.to_s] rescue '' } define_method("#{meth}=") do |value| write_attribute(name, (@attributes[name] || {}).merge(::I18n.locale.to_s => value)) end define_method("#{meth}_translations") { read_attribute(name) } define_method("#{meth}_translations=") { |value| write_attribute(name, value) } else super end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongoid_i18n-0.1.6 | lib/mongoid/i18n.rb |