Sha256: 9d93e7b2506a547afc474e471f20bce0dc1ae94e6b2ca0112b6ed18feacb2d06

Contents?: true

Size: 635 Bytes

Versions: 1

Compression:

Stored size: 635 Bytes

Contents

require 'active_support/concern'

module Translatable
  module ActsAsTranslatable
    extend ActiveSupport::Concern

    module ClassMethods
      def translatable(column)
        key_name = column.to_s.pluralize.to_sym
        has_many key_name, -> { where(key: column.to_s) }, :as => :translatable, class_name: 'Translatable::TranslatedWord',
        :inverse_of => :translatable, :dependent => :destroy
        accepts_nested_attributes_for key_name
        define_method column do |locale = I18n.default_locale|
          send(key_name).detect{|w| w.locale.to_s == locale.to_s }.try(:value)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ar-translatable-0.0.1 lib/translatable/acts_as_translatable.rb