Sha256: 98b3604c3c8f30354c3cf1d40fd483db86a6b2196829f88b242b9dea236cab27

Contents?: true

Size: 974 Bytes

Versions: 1

Compression:

Stored size: 974 Bytes

Contents

module Mobility
=begin

Instance methods attached to all model classes when model includes or extends
{Mobility}.

=end
  module InstanceMethods
    # Fetch backend for an attribute
    # @param [String] attribute Attribute
    def mobility_backend_for(attribute)
      send(Backend.method_name(attribute))
    end

    private

    def mobility_get(*args)
      value = mobility_read(*args)
      value == false ? value : value.presence
    end

    def mobility_present?(*args)
      mobility_read(*args).present?
    end

    def mobility_set(attribute, value, locale: Mobility.locale, **options)
      Mobility.enforce_available_locales!(locale)
      mobility_backend_for(attribute).write(locale.to_sym, value == false ? value : value.presence, **options)
    end

    def mobility_read(attribute, locale: Mobility.locale, **options)
      Mobility.enforce_available_locales!(locale)
      mobility_backend_for(attribute).read(locale.to_sym, options)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobility-0.1.11 lib/mobility/instance_methods.rb