Sha256: b30cac3ad5f3a494ffb9dc4bea29c1d4491829750638e90faeb95c99b3fe9d1c

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

require 'mobility/backends/active_record/pg_hash'

module Mobility
  module Backends
=begin

Implements the {Mobility::Backends::Jsonb} backend for ActiveRecord models.

@see Mobility::Backends::ActiveRecord::HashValued

=end
    module ActiveRecord
      class Jsonb < PgHash
        require 'mobility/backends/active_record/jsonb/query_methods'

        # @!group Backend Accessors
        #
        # @note Translation may be any json type, but querying will only work on
        #   string-typed values.
        # @param [Symbol] locale Locale to read
        # @param [Hash] options
        # @return [String,Integer,Boolean] Value of translation
        # @!method read(locale, **options)

        # @!group Backend Accessors
        # @note Translation may be any json type, but querying will only work on
        #   string-typed values.
        # @param [Symbol] locale Locale to write
        # @param [String,Integer,Boolean] value Value to write
        # @param [Hash] options
        # @return [String,Integer,Boolean] Updated value
        # @!method write(locale, value, **options)

        setup_query_methods(QueryMethods)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobility-0.6.0 lib/mobility/backends/active_record/jsonb.rb