Sha256: e43b6590c8afbec875f309164b84c400e8f121fe355efc86c0c744dc742ca7ba
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 KB
Contents
module Locomotive::Steam module Models class I18nField extend Forwardable def_delegators :@translations, :values, :blank? attr_reader :name, :translations def initialize(name, translations) @name = name self.translations = translations end def initialize_copy(field) super self.translations = field.translations.dup end def [](locale) @translations[locale] end def []=(locale, value) @translations[locale] = value end def translations=(translations) @translations = (if translations.respond_to?(:fetch) translations else Hash.new { translations } end).with_indifferent_access end def each(&block) @translations.each(&block) end alias :__translations__ :translations alias :to_hash :translations def serialize(attributes) attributes[@name] = @translations end def to_json to_hash.to_json end end end end
Version data entries
6 entries across 6 versions & 1 rubygems